本文概述
mouseleave()方法将事件处理函数添加到HTML元素。当鼠标指针离开HTML元素时, 将执行此函数。
当鼠标光标离开所选元素时, 它将触发mouseleave事件, 并且一旦发生mouseleave事件, 它将执行事件处理程序函数附带的mouseleave()方法来运行。
此事件通常与mouseenter()事件一起使用。
句法:
$(selector).mouseleave()
它触发选定元素的mouseleave事件。
$(selector).mouseleave(function)
它为mouseleave事件添加了一个函数。
jQuery mouseleave()事件的参数
参数 | 描述 |
---|---|
Function | 它是一个可选参数。触发mouseleave事件时, 它会自行执行。 |
jQuery mouseleave()事件的示例
让我们以一个示例来演示jQuery mouseleave()事件。
<!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").mouseleave(function(){
$( "div" ).text( "Bye Bye... leaving heading" ).show().fadeOut( 2000 );
});
});
</script>
</head>
<body>
<h1 id="h1">Enter this heading.</h1>
<div></div>
</body>
</html>
立即测试
输出:
输入此标题。
jQuery mouseleave()事件示例2
让我们看一下jQuery mouseleave()事件的另一个示例。
<!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").mouseenter(function(){
$("p").css("background-color", "red");
});
$("p").mouseleave(function(){
$("p").css("background-color", "blue");
});
});
</script>
</head>
<body>
<p>Move your mouse cursor over this statement.</p>
</body>
</html>
立即测试
输出:
将鼠标光标移到该语句上。
评论前必须登录!
注册