hover()是jQuery中的一种内置方法,用于指定两个函数,当鼠标指针移到所选元素上时要启动两个函数。
用法:
$(selector).hover(Function_in, Function_out);
选择器是选定的元素。
参数:它接受下面指定的两个参数:
- Function_in:它指定发生mouse-enter事件时要运行的函数。
- Function_out:它是可选的,它指定在发生mouse-leave事件时运行的函数。
返回值:它返回带有选定元素的背景色效果。
代码1:
<html>
<head>
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<script>
<!-- jQuery code to show the working of hover() method -->
$(document).ready(function() {
$("p").hover(function() {
$(this).css("background-color", "green");
}, function() {
$(this).css("background-color", "yellow");
});
});
</script>
<style>
p {
width: 55%;
height: 80px;
padding: 20px;
margin: 10px;
border: 2px solid green;
font-size: 50px;
}
</style>
</head>
<body>
<!--move the mouse in and out over this paragraph
and background color will change-->
<p>GeeksforGeeks !</p>
</body>
</html>
输出:
在将鼠标指针移到该段上之前,
将鼠标指针移到该段落上之后,
将鼠标指针从段落中移出后,
相关用法
- JQuery one()用法及代码示例
- JQuery val()用法及代码示例
- JQuery after()用法及代码示例
- JQuery on()用法及代码示例
- JQuery eq()用法及代码示例
- JQuery first()用法及代码示例
- JQuery has()用法及代码示例
- JQuery last()用法及代码示例
- JQuery removeAttr()用法及代码示例
- JQuery removeProp()用法及代码示例
- JQuery offset()用法及代码示例
注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery | hover() with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。