잡동사니에도 사랑을

[21.09.10] exam14 본문

JAVA_EE/JavaScript

[21.09.10] exam14

luvforjunk 2021. 9. 10. 20:17
728x90
반응형

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Insert title here</title>

<script type="text/javascript">

        var user_id = prompt("아이디를 입력하세요.", "동글동글 키위새");

prompt : 입력 다이얼로그

       

        if(user_id != ""){ // "" 아니라면

               alert("안녕하세요. " + user_id + "");

alert : 다이얼로그만 뜰 뿐, 추가 행위는 할 수 없다.

              

               if(confirm("정말 로그아웃 하시겠습니까?")){

                       alert("로그아웃");

               }else{

                       alert("로그아웃 취소");

               }

        }

 

</script>

</head>

<body>

 

</body>

</html>

 

결과창1
결과창2
결과창3
결과창4

728x90
반응형