$(selector).hover(inFunction,outFunction)
参数 | 说明 |
InFunction | 这是必填参数。当发生mouseenter事件时,将执行该功能。 |
OutFunction | 这是一个可选参数。当发生mouseleave事件时,将执行该功能。 |
<!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>Hover your mouse pointer on me!</p>
</body>
</html>
将鼠标指针悬停在我身上!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>hover demo</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>