alert.js 285 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 //window객체는 window. 생략 가능 alert("test"); // 메시지 창 띄움 window.open('','','width=200,height=100') // 새창 띄우기 if (confirm("Are you sure?")) { // Yes/No를 묻는 다이얼로그 창 띄움. Yes일 때만 true } var name = prompt("Enter name"); // 사용자의 입력 받는 창 띄움