jQuery click()方法
当您点击一个元素时,会触发点击事件,一旦点击事件发生,它就会执行click()方法或附加一个要运行的函数。
它通常与其他jQuery事件一起使用。
语法:
$(selector).click()
它用于触发所选元素的点击事件。
$(selector).click(function)
它用于将函数附加到单击事件。
让我们以一个例子来演示jQuery click()事件。
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
(document).ready(function(){("p").click(function(){
alert("This paragraph was clicked.");
});
});
</script>
</head>
<body>
<p>Click on the statement.</p>
</body>
</html>
让我们举一个例子来演示jquery的click()事件。在这个例子中,当你点击标题元素时,它将隐藏当前的标题。
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
(document).ready(function(){("h1,h2,h3").click(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<h1>This heading will disappear if you click on this.</h1>
<h2>I will also disappear.</h2>
<h3>Me too.</h3>
</body>
</html>