본문 바로가기

컴퓨터

window.open

기능
브라우저의 새 창을 연다.

문법
window.open(URL, name, specs, replace);

매개변수
참고: https://www.w3schools.com/jsref/met_win_open.asp

예제

myWindow = window.open('''''width=200, height=100');    // Opens a new window
myWindow.document.write("<p>This is 'myWindow'</p>");       // Some text in the new window


'컴퓨터' 카테고리의 다른 글

loadURL  (0) 2019.03.09
이전 페이지  (0) 2019.03.04
curl  (0) 2019.03.02
accept  (0) 2019.02.28
bind  (0) 2019.02.26