當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery change()用法及代碼示例


jQuery change()是一個內置方法,用於檢測輸入字段值的變化。此方法僅適用於“<input>、<textarea> 和 <select>”元素。

用法:

$(selector).change(function)

參數:

它接受可選參數“function”。

示例 1:在下麵的代碼中,沒有函數傳遞給更改方法。

HTML


<!DOCTYPE html>
<html>
<head>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
    </script>
    <!--Demo of change method without passing function-->
    <script>
        $(document).ready(function () {
            $("button").click(function () {
                $("input").change();
            });
        });
    </script>
</head>
<body>
    <p>Click the button to see the changed value !!!</p>
    <!--click on this button and see the change -->
    <button>Click Me!</button>
    <p>Enter value:
        <input value="GeeksforGeeks"
               onchange="alert(this.value)"
               type="text">
    </p>
</body>
</html>

輸出:

示例 2:在下麵的代碼中,函數被傳遞給更改方法。

HTML


<!DOCTYPE html>
<html>
<head>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
    </script>
    <!--Here function is passed to the change method-->
    <script>
        $(document).ready(function () {
            $(".field").change(function () {
                $(this).css("background-color", "#7FFF00");
            });
        });
    </script>
    <style>
        .field {
            padding: 5px;
        }
    </style>
</head>
<body>
    <!--write something and click outside -->
    Enter Value:
    <input class="field" type="text">
    <p>
        Write something in the input field, and then
        press enter or click outside the field.
    </p>
</body>
</html>

輸出:



相關用法


注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery change() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。