잡동사니에도 사랑을

[21.09.14] exam24(JavaScript) 본문

JAVA_EE/JavaScript

[21.09.14] exam24(JavaScript)

luvforjunk 2021. 9. 14. 18:15
728x90
반응형

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Insert title here</title>

<script type="text/javascript">

        function random(n1, n2){

               return Math.floor(Math.random()*(n2-n1+1)) + n1;

        }

 

        function authNo(){

               var value = "" ; // 초기화

               for(var i=1; i<=5; i++){

                       value += random(0, 9);

               } // for

              

               document.getElementById("auth").innerText = value;

        }

       

        function refresh(){

               location.reload(); //새로고침처럼 현재의 리소스를 다시 불러온다.

        }

       

        function goNaver(){

               if(confirm("정말 네이버로 이동하시겠습니까?")){

                       location.href="http://www.naver.com";

               }

        }

</script>

</head>

<body onload="authNo()">

        <p>

               <!-- strong 태그 안이 자바스크립트 출력 부분 -->

               고객님의 인증번호는 <strong id="auth">00000</strong>입니다.

        </p>

       

        <!-- 페이지 새로고침 이벤트 호출 -->

        <input type = "button" value="인증번호 새로 받기" onclick="refresh()"/><br>

               <input type = "button" value="네이버로 이동하기" onclick="goNaver()"/>

       

 

</body>

</html>

 

728x90
반응형

'JAVA_EE > JavaScript' 카테고리의 다른 글

[21.09.14] exam26(JavaScript)  (0) 2021.09.14
[21.09.14] exam25(JavaScript)  (0) 2021.09.14
[21.09.14] exam23(JavaScript)  (0) 2021.09.14
[21.09.14] exam22(JavaScript)  (0) 2021.09.14
[21.09.14] exam21(JavaScript) - 내장 객체  (0) 2021.09.14