本文概述
mousedown()方法将事件处理函数添加到HTML元素。当鼠标悬停在HTML元素上时, 当按下鼠标左键时, 将执行此功能。
此事件通常与mouseup()事件一起使用。
句法:
$(selector).mousedown()
它触发选定元素的mousedown事件。
$(selector).mousedown(function)
它将一个功能添加到mousedown事件。
jQuery mousedown()事件的参数
参数 | 描述 |
---|---|
Function | 它是一个可选参数。触发mousedown事件时, 它会自行执行。 |
jQuery mousedown()事件的示例
让我们以一个示例来演示jQuery mousedown()事件。
<!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").mousedown(function(){
$( "div" ).text( "mouse down event triggered" ).show().fadeOut( 2000 );
});
});
</script>
</head>
<body>
<h1 id="h1">Enter this heading.</h1>
<div></div>
</body>
</html>
立即测试
输出:
输入此标题。
jQuery mousedown()事件示例2
让我们看一下jQuery mousedown()事件的另一个示例。
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("p").mousedown(function(){
$("p").css("background-color", "blue");
});
$("p").mouseup(function(){
$("p").css("background-color", "lightyellow");
});
});
</script>
</head>
<body>
<p>Press down the mouse left button over this p element</p>
</body>
</html>
立即测试
输出:
在此p元素上按下鼠标左键
评论前必须登录!
注册