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


HTML MouseEvent screenX用法及代码示例


每当触发此事件时,将使用MouseEvent screenX属性返回鼠标指针的水平坐标。它返回一个数字,该数字表示鼠标指针相对于屏幕的水平距离(以像素为单位)。

MouseEvent screenX属性是一个只读属性,它返回一个数字,该数字表示鼠标指针的水平坐标(以像素为单位)。

用法:


event.screenX

以下示例程序旨在说明MouseEvent的screenX属性:

程序:当在元素上单击鼠标按钮时,找出相对于屏幕的鼠标指针的水平坐标。

<!DOCTYPE html> 
<html> 
<head>  
    <title>MouseEvent screenX Property in HTML</title>  
    <style>  
        h1  
        {  
            color:green;  
        }  
      
        h2 
        { 
            font-family:Impact; 
        } 
      
        body  
        {  
            text-align:center;  
        } 
    </style>  
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1>  
    <h2>MouseEvent screenX Property</h2> 
      
    <p onclick="coord(event)"> 
        Click somewhere in the paragraph to  
        get the x(horizontal) coordinates of  
        the mouse pointer. 
    </p> 
      
    <p id="test"></p> 
      
    <script> 
        function coord(event)  
        { 
            var x = event.screenX; 
            var coords = " X coords:" + x; 
            document.getElementById("test").innerHTML = coords; 
        } 
    </script> 
</body> 
</html>                                      

输出:

单击按钮后

支持的网页浏览器

  • Opera
  • IE浏览器
  • 谷歌浏览器
  • Firefox
  • 苹果Safari


相关用法


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