open 썸네일형 리스트형 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("This is 'myWindow'"); // Some text in the new window 이전 1 다음