当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


jQuery event.pageX用法及代码示例


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>

输出:



相关用法


注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery event.pageX Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。