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


jQuery event.pageY用法及代码示例


jQuery event.pageY是一个内置属性,用于查找鼠标指针相对于文档上边的位置。

用法:

event.pageY

参数:它不接受任何参数,因为它是属性而不是函数。

jQuery 示例显示 event.pageY 属性的工作原理:

示例 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(event.pageY); 
                }); 
            }); 
    </script> 
</head> 
  
<body> 
    <!-- bottom left position of the pointer will show here -->
    <p> 
        Y 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 to demonstrate the mouse pointer position-- > 
            $(document).ready(function () { 
                $(document).mousemove(function (event) { 
                    $("span").text(event.pageY); 
                }); 
            }); 
    </script> 
</head> 
  
<body> 
    <!-- top left position of the pointer will show here -->
    <p> 
        Y coordinate position of the mouse-pointer is :  
        <span></span> 
    </p> 
</body> 
  
</html>

输出:



相关用法


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