screenY 事件屬性
事件對(duì)象定義和用法
screenY 事件屬性可返回事件發(fā)生時(shí)鼠標(biāo)指針相對(duì)于屏幕的垂直坐標(biāo)。
語(yǔ)法
event.screenY
實(shí)例
實(shí)例
下面的例子可顯示出事件發(fā)生時(shí)鼠標(biāo)指針的坐標(biāo):
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool在線教程(w3cschool.cn)</title>
<script type="text/javascript">
function coordinates(event){
x=event.screenX
y=event.screenY
alert("X=" + x + " Y=" + y)
}
</script>
</head>
<body onmousedown="coordinates(event)">
<p>
在文檔中點(diǎn)擊某個(gè)位置。消息框會(huì)提示出指針相對(duì)于屏幕的 x 和 y 坐標(biāo)。
</p>
</body>
</html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool在線教程(w3cschool.cn)</title>
<script type="text/javascript">
function coordinates(event){
x=event.screenX
y=event.screenY
alert("X=" + x + " Y=" + y)
}
</script>
</head>
<body onmousedown="coordinates(event)">
<p>
在文檔中點(diǎn)擊某個(gè)位置。消息框會(huì)提示出指針相對(duì)于屏幕的 x 和 y 坐標(biāo)。
</p>
</body>
</html>
嘗試一下 ?
事件對(duì)象
更多建議: