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


JQuery on()用法及代碼示例


jQuery on()是一種內置方法,用於為 DOM 樹中的選定元素和子元素附加一個或多個事件處理程序。 DOM(文檔對象模型)是萬維網聯盟標準。該方法定義了訪問 DOM 樹中的元素。

用法:

$(selector).on(event, childSelector, data, function)

參數:它接受下麵指定的一些參數 -

  • event:這指定附加到所選元素的事件。
  • childSelector:這是可選的,它指定可以使用給定事件處理程序的特定子級。
  • data:這是可選的,它指定要與函數一起傳遞的附加數據。
  • function:這指定事件發生時要運行的函數。

返回值:這將返回附加到所選元素的所有事件處理程序。

示例 1:在下麵的代碼中,子說明符和數據未傳遞。

HTML


<!DOCTYPE html>
<html>
<head>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
    </script>
    <script>
        /* jQuery code to show on method */
        $(document).ready(function () {
            $("p").on("click", function () {
                document.getElementById("p1").innerHTML
                    = "Paragraph changed!";
            });
        });
    </script>
    <style>
        #p1 {
            font-size: 30px;
            width: 400px;
            padding: 20px;
            border: 2px solid green;
        }
    </style>
</head>
<body>
    <!--click on this paragraph -->
    <p id="p1">Click Here !!!</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>
    <script>
        /* jQuery code to show on method */
        function handlerName(event) {
            let t = event.data.msg;
            document.getElementById("p1").innerHTML = t;
        }
        $(document).ready(function () {
            $("p").on("click", {
                msg: "You just clicked the given paragraph !"
            }, handlerName)
        });
    </script>
    <style>
        #p1 {
            font-size: 30px;
            width: 470px;
            padding: 20px;
            border: 2px solid green;
        }
    </style>
</head>
<body>
    <!--click on this paragraph -->
    <p id="p1">Click Me!</p>
</body>
</html>

輸出:



相關用法


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