jQueryループボタンを使用したデフォルトのアクション

23828 ワード

jQueryループボタンを使用したアクション
1.スペースが空かどうかを確認する
2.テキストの分割
3.入力値の表示
<!doctype html>
<html lang="ko">

<head>
    <meta charset="UTF-8">
    <title>jQuery버튼</title>

    <!-- JQuery를 import 합니다 -->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>

    <style type="text/css">
        div.question-box {
            margin: 10px 0 20px 0;
        }
    </style>

    <script>
        <!--
        첫번째
        클릭
        버튼-->
        function q1() {
            // 1. input-q1의 입력값을 value에 가져온다.
            let value = $('#input-q1').val();
            // 2. 만약 입력값이 빈칸이면 if(입력값=='')
            if (value == '') {
                // 3. 알려주기 창 띄우기
                alert('입력하세요!');
            } else {
                // 4. 입력값이 있으면 입력한 value 값 띄우기
                alert(value);
            }
        }

        <!--두번째 클릭 버튼-->
        function q2() {
            // 1. 이메일 입력 값: input-q2 값을 email로 가져온다.
            let email = $('#input-q2').val();
            // 2. 만약 가져온 값에 @가 있으면 (includes 이용하기 - 찾아보자!)
            if (email.includes('@')) {
                // 3. 이메일을 @로 나누고 후반부 텍스트를 domainWithDot로 가져온다.
                let domainWithDot = email.split('@')[1];
                // 4. 후반부 텍스트: domainWithDot를 . 으로 나누고 앞쪽 텍스트 도메인을 onlyDomain로 가져온다.
                let onlyDomain = domainWithDot.split('.')[0];
                // 5. alert(도메인 값);으로 띄우기
                alert(onlyDomain);
            } else {
                // 6. 만약 이메일이 아니면 '이메일이 아닙니다.' 라는 얼럿 띄우기
                alert('이메일이 아닙니다.');
            }
        }

        function q3() {
            // 1. input-q3 값을 newName으로 가져온다.
            let newName = $('#input-q3').val();
            /빈칸이면 '이름을 입력하세요' 메세지 창을 띄움/
            if (newName == '') {
                alert('이름을 입력하세요');
                return;
            }
            // 2. 입력한 이름을 목록으로 temp_html로 가져온다.
            let temp_html = `<li>${newName}</li>`;

            // 3. 만들어둔 temp_html을 names-q3에 붙인다.(jQuery의 $('...').append(temp_html)을 이용하면 굿!)
            $('#names-q3').append(temp_html);
        }

        function q3_remove() {
            // 1. names-q3의 내부 태그를 모두 비운다.(jQuery의 $('....').empty()를 이용하면 굿!)
            $('#names-q3').empty();
        }

    </script>

</head>

<body>
<h1>jQuery로 버튼 만들기</h1>

<!--빈칸 체크 함수 만들기-->
<div class="question-box">
    <h2>1. 빈칸 체크 함수 만들기</h2>
    <h5>1-1. 버튼을 눌렀을 때 입력한 글자로 얼럿 띄우기</h5>
    <h5>[완성본]1-2. 버튼을 눌렀을 때 칸에 아무것도 없으면 "입력하세요!" 얼럿 띄우기</h5>
    <!--클릭 버튼-->
    <input id="input-q1" type="text"/>
    <button onclick="q1()">클릭</button>
</div>
<!--밑줄 긋기-->
<hr/>

<!--이메일 판별 구역-->
<div class="question-box">
    <h2>2. 이메일 판별 함수 만들기</h2>
    <h5>2-1. 버튼을 눌렀을 때 입력받은 이메일로 얼럿 띄우기</h5>
    <h5>2-2. 이메일이 아니면(@가 없으면) '이메일이 아닙니다'라는 얼럿 띄우기</h5>
    <h5>[완성본]2-3. 이메일 도메인만 얼럿 띄우기</h5>
    <!--이메일 입력-->
    <input id="input-q2" type="text"/>
    <!--이메일 입력 버튼-->
    <button onclick="q2()">클릭</button>
</div>
<hr/>

<div class="question-box">
    <h2>3. 입력값 전시하기</h2>
    <h5>3-1. 이름을 입력하면 아래 나오게 하기</h5>
    <h5>[완성본]3-2. 다지우기 버튼을 만들기</h5>
    <input id="input-q3" type="text" placeholder="여기에 이름을 입력"/>
    <!--이름 붙이는 버튼-->
    <button onclick="q3()">이름 붙이기</button>
    <!--이름 지우는 버튼-->
    <button onclick="q3_remove()">다지우기</button>

    <!--입력한 이름들이 전시되는 구역: names-q3-->
    <ul id="names-q3">
    </ul>
</div>
</body>

</html>