本文概述
- jQuery mouseup()事件的参数
- jQuery mouseup()事件的示例
- 输入此标题。
- jQuery mouseup()事件示例2
当你在选定元素上释放鼠标的按下按钮时, 将发生mouseup()事件。一旦发生mouseup()事件, 它就会执行附加有要运行的函数的mouseup()方法。
【jQuery mouseup()】此事件通常与mousedown()事件一起使用。
句法:
$(selector).mouseup()
它触发选定元素的mouseup事件。
$(selector).mouseup(function)
它将一个功能添加到mouseup事件。
jQuery mouseup()事件的参数
参数 | 描述 |
---|---|
Function | 它是一个可选参数。当触发mouseup事件时, 它将自行执行。 |
<
!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").mouseup(function(){
$( "div" ).text( "Bye Bye... mouse up event triggered" ).show().fadeOut( 2000 );
});
});
<
/script>
<
/head>
<
body>
<
h1 id="h1">
Enter this heading.<
/h1>
<
div>
<
/div>
<
/body>
<
/html>
立即测试
输出:
输入此标题。jQuery mouseup()事件示例2让我们看一下jQuery mouseup()事件的另一个示例。
<
!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", "pink");
});
$("p").mouseup(function(){
$("p").css("background-color", "yellowgreen");
});
});
<
/script>
<
/head>
<
body>
<
p>
Press down and release the mouse left button over this div element<
/p>
<
/body>
<
/html>
立即测试
输出:
按下并在此div元素上释放鼠标左键
推荐阅读
- jQuery offset()
- jQuery mouseover()
- jQuery mouseout()
- jQuery mouseleave()
- jQuery mouseenter()
- jQuery mousedown()
- jQuery load()
- jQuery keyup()
- jQuery keypress()