jQuery hover()
指的是当鼠标悬停在某个元素上执行的事件方法。 hover() 方法会同时触发 mouseenter 和 mouseleave 事件。
语法
$(selector).hover(inFunction,outFunction)
参数
参数 | 说明 |
---|---|
inFunction | 为必填参数。当 mouseenter 事件发生时执行该函数。 |
outFunction | 可选参数。当 mouseleave 事件发生时执行该函数。 |
例子
例1
修改背景色的例子
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(document).ready(function(){
$("p").hover(function(){
$(this).css("background-color", "violet");
}, function(){
$(this).css("background-color", "green");
});
});
</script>
</head>
<body>
<p>将鼠标指针悬停在这里</p>
</body>
</html>
例2
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>jQuery hover()例子</title>
<style>
ul {
margin-left: 20px;
color: black;
}
li {
cursor: default;
}
span {
color: red;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<ul>
<li>Java</li>
<li>SQL</li>
<li class="fade">Android</li>
<li class="fade">php</li>
</ul>
<script>
$( "li" ).hover(
function() {
$( this ).append( $( "<span> ***</span>" ) );
}, function() {
$(this).find( "span:last" ).remove();
}
);
$( "li.fade" ).hover(function() {
$( this ).fadeOut( 100 );
$( this ).fadeIn( 500 );
});
</script>
</body>
</html>