click()是jQuery中的內置方法,可啟動click事件或附加一個函數,以在發生click事件時運行。
用法:
$(selector).click(function);
參數:它接受可選參數“function”,該參數用於在發生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>
輸出:
在塊內單擊之前,
在塊內單擊後,
相關用法
- JQuery val()用法及代碼示例
- JQuery has()用法及代碼示例
- JQuery eq()用法及代碼示例
- JQuery one()用法及代碼示例
- JQuery on()用法及代碼示例
- JQuery last()用法及代碼示例
- JQuery first()用法及代碼示例
- JQuery after()用法及代碼示例
- JQuery slideUp()用法及代碼示例
- JQuery mousemove()用法及代碼示例
注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery | click() with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。