신수용

수정

<html>
<head>
<script type="text/javascript">
function message(){
alert("This alert box was called with the onload event");
}
</script>
</head>
<body onload="message()">
<script type="text/javascript">
document.write("This message is written by JavaScript");
</script>
......
<html>
<head>
</head>
<body>
<script type="text/javascript">
var name = prompt("Enter the name");
document.write(name);
</script>
</body>
</html>
//window객체는 window. 생략 가능
alert("test"); // 메시지 창 띄움
//window객체는 window. 생략 가능
alert("test"); // 메시지 창 띄움
window.open('','','width=200,height=100') // 새창 띄우기
window.open('','','width=200,height=100') // 새창 띄우기
if (confirm("Are you sure?")) {
// Yes/No를 묻는 다이얼로그 창 띄움. Yes일 때만 true
// Yes/No를 묻는 다이얼로그 창 띄움. Yes일 때만 true
}
var name = prompt("Enter name"); // 사용자의 입력 받는 창 띄움
var name = prompt("Enter name"); // 사용자의 입력 받는 창 띄움
......