每當觸發此事件時,將使用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
相關用法
- HTML Window screenX用法及代碼示例
- HTML MouseEvent relatedTarget用法及代碼示例
- HTML MouseEvent buttons用法及代碼示例
- HTML MouseEvent clientY用法及代碼示例
- HTML MouseEvent pageX用法及代碼示例
- HTML MouseEvent offsetY用法及代碼示例
- HTML MouseEvent pageY用法及代碼示例
- HTML MouseEvent offsetX用法及代碼示例
- HTML MouseEvent clientX用法及代碼示例
- HTML MouseEvent screenY用法及代碼示例
- javascript MouseEvent which用法及代碼示例
- javascript MouseEvent altKey用法及代碼示例
- javascript MouseEvent shiftKey用法及代碼示例
- javascript MouseEvent ctrlKey用法及代碼示例
- javascript MouseEvent Button用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM MouseEvent screenX Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。