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


JQuery click()用法及代碼示例


click()是jQuery中的內置方法,可啟動click事件或附加一個函數,以在發生click事件時運行。
用法:

$(selector).click(function);

參數:它接受可選參數“function”,該參數用於在發生Click事件時運行。
返回值:它返回具有指定函數的所選元素來執行。

jQuery代碼顯示click()方法的用法方式:

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


<html> 
  
<head> 
    <script 
    src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
    <!-- jQuery code to show the working of this method -->
    <script> 
        $(document).ready(function() { 
            $("p").click(); 
        }); 
    </script> 
    <style> 
        p { 
            display: block; 
            width: 300px; 
            padding: 20px; 
            font-size: 30px; 
            border: 2px solid green; 
        } 
    </style> 
</head> 
  
<body> 
    <!-- click on this method -->
    <p onclick="alert('paragraph was clicked')">This is a paragraph.</p> 
</body> 
  
</html>

輸出:
兩個輸出同時生成-

代碼2:
在下麵的代碼中,將函數傳遞給此方法。

<html> 
  
<head> 
    <script 
    src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
    <script> 
        <!-- jQuery code to show the working of this method -->
        $(document).ready(function() { 
            $("p").click(function() { 
                $(this).fadeOut(); 
            }); 
        }); 
    </script> 
    <style> 
        p { 
            display: block; 
            width: 370px; 
            padding: 25px; 
            font-size: 25px; 
            border: 2px solid green; 
        } 
    </style> 
</head> 
  
<body> 
    <!-- click on this paragraph and the paragraph will disappear -->
    <p>Click inside this block and whole block will disappear !!!</p> 
</body> 
  
</html>

輸出:
在塊內單擊之前,

在塊內單擊後,



相關用法


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