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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。