GET, SET

Grace Goh·2023년 6월 5일
0

jQuery

목록 보기
6/6

값 가져오기

<head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script>
        $(function(){
            
            // 값을 선택하려면 selector라는 선택자가 필요하다. id로 만든다. id = #
          
            // document.getElementById("txt1").value
            // $(셀렉터).함수();

            // alert($("#txt1").val());
            // alert(document.getElementById("hdn1").value);


            // 변수에 담아보기
            var txt1 = $("#txt1").val();
            var hdn1 = $("#hdn1").val();
            var slct1 = $("#slct1").val();
            alert(txt1);
            alert(hdn1);
            alert(slct1);

        })
    </script>
</head>
<body>
    <input type="text" id="txt1" value="text1" /><br />
    <input type="hidden" id="hdn1" value="hidden1" /><br />
    <select id="slct1">
        <option value="select1">선택1</option>
        <option value="select2" selected="selected">선택2</option>
        <option value="select3">선택3</option>
    </select>
</body>
</html>


값 변경하기

    <script>
        $(function(){
            $("#txt1").val("값 변경하기")
        })
    </script>

<head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script>
        // SET
        // onload
        $(function(){
            $("#txt1").val("txt2로 값 변경하기")
        })
    </script>
</head>
<body>
    <input type="text" id="txt1" value="text1" /><br />
    <input type="hidden" id="hdn1" value="hidden1" /><br />
    <select id="slct1">
        <option value="select1">선택1</option>
        <option value="select2" selected="selected">선택2</option>
        <option value="select3">선택3</option>
    </select>
    <script>
        // 괄호 닫기만 하면 GET
        alert($("#txt1").val());
    </script>
</body>
</html>
profile
Español, Inglés, Coreano y Python

0개의 댓글