mousemove()方法是jQuery中的內置方法,當鼠標指針移到所選元素上時使用。
用法:
$(selector).mousemove(function)
參數:該方法接受可選的單參數函數。此參數用於指定調用mousemove事件時要運行的函數。
返回值:此方法返回具有更改的所選元素。
下麵的方法說明了jQuery中的mousemove()方法:
例:
<!DOCTYPE html>
<html>
<head>
<title>The mousemove Method</title>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<!-- jQuery code to show the working of this method -->
<script>
$(document).ready(function() {
$("p").mousemove(function() {
$("div").css("background-color", "lightgreen");
});
});
</script>
<style>
div {
width: 380px;
padding: 20px;
height: 60px;
border: 2px solid green;
font-weight: bold;
font-size: 20px;
}
</style>
</head>
<body>
<div>
<!-- move over this text to see the change -->
<p>Move over this paragraph.</p>
</div>
</body>
</html>
輸出:
在將鼠標移到該段之前:
將鼠標移到該段之後:
相關用法
- JQuery first()用法及代碼示例
- JQuery has()用法及代碼示例
- JQuery val()用法及代碼示例
- JQuery after()用法及代碼示例
- JQuery last()用法及代碼示例
- JQuery eq()用法及代碼示例
- JQuery one()用法及代碼示例
- JQuery on()用法及代碼示例
- JQuery index()用法及代碼示例
- JQuery hasClass()用法及代碼示例
- JQuery focus()用法及代碼示例
- JQuery click()用法及代碼示例
- JQuery queue()用法及代碼示例
- JQuery stop()用法及代碼示例
注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery | mousemove() with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。