screenX 鼠标事件在 JavaScript 中的作用是什么?


触发事件时,screenX 鼠标事件将返回鼠标指针的水平坐标。

示例

你可以尝试运行以下代码,了解如何在 JavaScript 中实现 screenX 鼠标事件。

<!DOCTYPE html>
<html>
   <body>
      <p onclick = "coordsFunc(event)">Click here to get the x (horizontal) and y (vertical) coordinates of the mouse pointer.</p>
      <script>
         function coordsFunc(event) {
            var x_coord = event.screenX;
            var y_coord = event.screenY;
            var xycoords = "X coords= " + x_coord + ", Y coords= " + y_coord;
            document.write(xycoords);
         }
      </script>
   </body>
</html>

更新于:23-05-2020

133 次浏览

启动你的 事业

完成课程以获得认证

开始
广告