프로그래밍 언어/JavaScript

JavaScript) 자바스크립트 새 창 열기

luana_eun 2022. 1. 29. 22:01
728x90

window.open()

function w() {
	window.open("https://www.naver.com", "test", "width=500, height=300, top=150, left=500")	
}

<input type="button" value="팝업창 생성" onclick="w()">

 

728x90