jQuery event.pageX是一個內置屬性,用於查找鼠標指針的位置相對於文檔的左邊。
用法:
event.pageX
參數:它不接受任何參數,因為它是屬性而不是函數。
jQuery 示例顯示 event.pageX 屬性的工作原理:
示例 1:在下麵的代碼中,顯示了鼠標指針的左上角位置。
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 demonstrate the x - coordinate of mouse pointer-- >
$(document).ready(function () {
$(document).mousemove(function (event) {
$("span").text("X= " + event.pageX);
});
});
</script>
</head>
<body>
<!-- top left position of the pointer will show here -->
<p>
X coordinate position of the mouse-pointer is :
<span></span>
</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 o demonstrate the mouse pointer position -->
$(document).ready(function() {
$(document).mousemove(function(event) {
$("span").text("X= " + event.pageX);
});
});
</script>
</head>
<body>
<!-- top right corner position of the pointer will show here -->
<p>
X coordinate position of the mouse-pointer is :
<span></span>
</p>
</body>
</html>
輸出:
相關用法
- jQuery event.pageY用法及代碼示例
- jQuery event.preventDefault()用法及代碼示例
- jQuery event.metaKey用法及代碼示例
- jQuery event.result用法及代碼示例
- jQuery event.relatedTarget用法及代碼示例
- jQuery event.which用法及代碼示例
- jQuery event.type用法及代碼示例
- jQuery event.timeStamp用法及代碼示例
- jQuery event.target用法及代碼示例
- jQuery eq()和get()的區別用法及代碼示例
- jQuery :button用法及代碼示例
- jQuery :checkbox用法及代碼示例
- jQuery :checked用法及代碼示例
- jQuery :contains()用法及代碼示例
- jQuery :disabled用法及代碼示例
- jQuery :empty用法及代碼示例
- jQuery :enabled用法及代碼示例
- jQuery :even用法及代碼示例
- jQuery :file用法及代碼示例
- jQuery :first-child用法及代碼示例
- jQuery :first-of-type用法及代碼示例
- jQuery :first用法及代碼示例
- jQuery :focus用法及代碼示例
- jQuery :gt()用法及代碼示例
- jQuery :header用法及代碼示例
注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery event.pageX Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。