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


HTML MouseEvent clientY用法及代碼示例


MouseEvent clientY屬性是一個隻讀屬性,用於在觸發鼠標事件時基於當前窗口返回鼠標指針的垂直坐標。

用法:

event.clientY

返回值:它返回一個數字,該數字表示鼠標指針的垂直坐標(以像素為單位)。


以下示例程序旨在說明MouseEvent clientY屬性:

在元素上單擊鼠標按鈕時,找出鼠標指針的垂直坐標。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>MouseEvent clientY Property</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>MouseEvent clientY Property</h2> 
  
    <p onclick="coord(event)"> 
        To get the y coordinates of the mouse pointer, 
        click on this paragraph. </p> 
  
    <p id="gfg"></p> 
  
    <script> 
        function coord(event) { 
            var getYcoord = event.clientY; 
            var result = "Y coordinate:" + getYcoord; 
            document.getElementById("gfg").innerHTML = result; 
        } 
    </script> 
  
</body> 
  
</html> 
  
                                 

輸出:

單擊按鈕後

支持的Web瀏覽器:

  • Opera
  • IE瀏覽器
  • 穀歌瀏覽器
  • Firefox
  • 蘋果Safari


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM MouseEvent clientY Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。