在W3標註中,screenX 事件屬性可返回事件發生時滑鼠指針相對於螢幕的水平坐標
基本介紹
- 中文名:screenx
- 含義:可返回事件發生
- 語法:event.screenX
- 代碼示例:<html><head>
術語解釋,語法,代碼示例,
術語解釋
在W3標註中,screenX 事件屬性可返回事件發生時滑鼠指針相對於螢幕的水平坐標。
語法
event.screenX
代碼示例
<html>
<head>
<script type="text/javascript">
function show_coords(event) {
x=event.screenX
y=event.screenY
alert("X coords: " + x + ", Y coords: " + y)
}
</script>
</head>
<body onmousedown="show_coords(event)">
<p>Click in the document. An alert box will alert the x and y coordinates of the cursor.</p>
</body>
</html>