pageY 滑鼠事件在 JavaScript 中的作用是什麼?


滑鼠事件觸發後,pageY 滑鼠事件屬性將用於獲取滑鼠指標的垂直座標。座標相對於螢幕。

舉例

你可以嘗試執行以下程式碼,瞭解如何在 JavaScript 中實現pageY 滑鼠事件。

<!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.pageX;
            var y_coord = event.pageY;
            var xycoords = "X coords= " + x_coord + ", Y coords= " + y_coord;
           
            document.write(xycoords);
         }
      </script>
   </body>
</html>

更新時間:2020 年 5 月 23 日

93 次檢視

開啟你的 職業生涯

完成教程並獲得認證

開始
廣告