screenx

screenx

在W3標註中,screenX 事件屬性可返回事件發生時滑鼠指針相對於螢幕的水平坐標。

基本信息

代碼示例

xhtmlscreenx
<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>

相關詞條

相關搜尋

熱門詞條

聯絡我們