• 코드:
​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>confirm() 메소드</h1>
12
    <button onclick="confirmDialogBox()">confirm 대화 상자</button>
13
    <p id="text"></p>
14
        
15
    <script>
16
        function confirmDialogBox() {
17
            var str;
18
​
19
            if (confirm("확인이나 취소를 눌러주세요!") == true) {
20
                str = "당신은 확인을 눌렀습니다!";
21
            } else {
22
                str = "당신은 취소을 눌렀습니다!";
23
            }
24
            document.getElementById("text").innerHTML = str;
25
        }
26
    </script>
27
    
28
</body>
29
​
30
</html>