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


HTML MouseEvent offsetX用法及代碼示例


MouseEvent offsetX屬性是一個隻讀屬性,用於返回鼠標指針相對於目標元素的x坐標。

用法:

event.offsetX

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


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

例:找出鼠標指針相對於<div>元素的水平坐標。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>MouseEvent offsetX Property in HTML</title> 
    <style> 
        div { 
            border:3px solid green; 
            height:100px; 
            width:500px; 
        } 
          
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>MouseEvent offsetX Property</h2> 
  
    <p>Click inside the green box to get  
      the x-coordinate relative to the top edge.</p> 
  
    <div onclick="coord(event)"></div> 
  
    <p>The x-coordinate, relative to  
      the top edge of the DIV element is:  
      <span id="test"></span></p> 
  
    <script> 
        
        function coord(event) { 
            
            var c = event.offsetX; 
            document.getElementById( 
              "test").innerHTML = c; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

  • 單擊按鈕後:
  • 單擊按鈕後:

支持的瀏覽器:

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


相關用法


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