$(selector).mouseenter()
$(selector).mouseenter(function)
参数 | 说明 |
function | 这是一个可选参数。触发mouseenter事件时,它将自行执行。 |
<!DOCTYPE html>
<html>
<head>
<script src="/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#h1").mouseenter(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", "lightgreen");
});
$("p").mouseleave(function(){
$("p").css("background-color", "yellow");
});
});
</script>
</head>
<body>
<p>Move your mouse cursor over this statement.</p>
</body>
</html>
将鼠标光标移到该语句上。