當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery event.pageY用法及代碼示例


event.pageY是jQuery中的一個內置屬性,用於查找鼠標指針相對於文檔頂部的位置。
用法:

event.pageY

參數:它不接受任何參數,因為它是屬性而不是函數。
返回值:它返回鼠標指針相對於文檔頂部的位置。
jQuery代碼顯示event.pageY屬性的工作方式:
代碼1:
在下麵的代碼中,將顯示鼠標指針的左下位置。

<html> 
  
<head> 
    <script 
    src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
    <script> 
        <!-- jQuery code o 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 co-ordinate position of the mouse-pointer is : <span></span></p> 
</body> 
  
</html>

輸出:


代碼2:
在下麵的代碼中,將顯示鼠標指針的左上角位置。

<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 co-ordinate position of the mouse-pointer is : <span></span></p> 
</body> 
  
</html>

輸出:



相關用法


注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery | event.pageY property with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。