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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。