jQuery hover()是一個內置方法,用於指定當鼠標指針移到所選元素上時啟動的兩個函數。
用法:
$(selector).hover(Function_in, Function_out);
這裏的selector就是被選擇的元素。
參數:它接受下麵指定的兩個參數 -
- Function_in:它指定當 mouse-enter 事件發生時要運行的函數。
- Function_out:它是可選的,指定 mouse-leave 事件發生時要運行的函數。
示例 1:顯示 hover() 方法工作原理的 jQuery 代碼。
HTML
<!DOCTYPE html>
<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>
輸出:
示例 2:在此示例中,我們將通過將鼠標懸停在內部和外部來更改字體大小。
HTML
<!DOCTYPE html>
<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).animate({ fontSize: "+=14px" });
}, function () {
$(this).animate({ fontSize: "-=14px" });
});
});
</script>
<style>
p {
width: 55%;
height: 80px;
padding: 20px;
margin: 10px;
border: 2px solid black;
font-size: 50px;
background-color: rgb(22, 153, 22);
}
</style>
</head>
<body>
<!--move the mouse in and out over this paragraph
and font-size will change-->
<p>GeeksforGeeks !</p>
</body>
</html>
輸出:
相關用法
- JQuery hover()用法及代碼示例
- JQuery height()用法及代碼示例
- JQuery has()用法及代碼示例
- JQuery hasClass()用法及代碼示例
- JQuery hide()用法及代碼示例
- JQuery html()用法及代碼示例
- JQuery hasData()用法及代碼示例
- JQuery andSelf()用法及代碼示例
- JQuery change()用法及代碼示例
- JQuery each()用法及代碼示例
- JQuery end()用法及代碼示例
- JQuery fadeOut()用法及代碼示例
- JQuery innerHeight()用法及代碼示例
- JQuery keydown()用法及代碼示例
- JQuery keypress()用法及代碼示例
- JQuery next()用法及代碼示例
- JQuery nextAll()用法及代碼示例
- JQuery parent()用法及代碼示例
- JQuery parents()用法及代碼示例
- JQuery prev()用法及代碼示例
- JQuery prevAll()用法及代碼示例
- JQuery remove()用法及代碼示例
- JQuery show()用法及代碼示例
- JQuery toArray()用法及代碼示例
- JQuery width()用法及代碼示例
注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery hover() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。