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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。