JS/JS 수업분

[JS] day08_event_welcome

congs 2023. 4. 18. 09:22
welcome

어서오쇼

 

 
 
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>welcome</title>
</head>
<body>
    <h1>어서오쇼</h1>
    <h3 id="print">    
    </h3>
    <script>
        let name = prompt('이름 입력: ');
        //  값을 받을 수 있는 창
        document.getElementById('print').innerText = name + ", 안녕";
    </script>
    <script>
        let a = confirm('확인/취소를 선택하는 창');
        console.log(a);
        alert('확인만 가능한 창');
    </script>
</body>
</html>