JavaScript 中 screenX 滑鼠事件的作用是什麼?
當事件觸發時,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>
廣告
資料結構
網路
關係型資料庫管理系統
作業系統
Java
iOS
HTML
CSS
Android
Python
C 語言
C++
C#
MongoDB
MySQL
Javascript
PHP