$(selector).mouseleave()
$(selector).mouseleave(function)
参数 | 说明 |
function | 这是一个可选参数。触发mouseleave事件时,它会自行执行。 |
<!DOCTYPE html>
<html>
<head>
<script src="/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#h1").mouseleave(function(){
$("div").text("再见...离开标题").show().fadeOut( 2000 );
});
});
</script>
</head>
<body>
<h1 id="h1">移动到标题上,离开。</h1>
<div></div>
</body>
</html>
移动到标题上,离开。
<!DOCTYPE html>
<html>
<head>
<script src="/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>将鼠标光标移到该语句上。</p>
</body>
</html>
将鼠标光标移到该语句上。