• 코드:
​x
 
1
<!DOCTYPE html>
2
<html lang="ko">
3
​
4
<head>
5
    <meta charset="UTF-8">
6
    <title>JavaScript BOM Dialog Box</title>
7
</head>
8
​
9
<body>
10
​
11
    <h1>alert() 메소드</h1>
12
    <button onclick="alertDialogBox()">alert 대화 상자</button>
13
        
14
    <script>
15
        function alertDialogBox() {
16
            alert("확인을 누를 때까지 다른 작업을 할 수 없어요!");
17
        }
18
    </script>
19
    
20
</body>
21
​
22
</html>