JavaScript 參考手冊
/ screenY 事件屬性
screenY 事件屬性
screenY 事件屬性
定義和用法
screenY 事件屬性可返回事件發(fā)生時(shí)鼠標(biāo)指針相對于屏幕的垂直坐標(biāo)。
語法
event.screenY
實(shí)例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <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è)位置。消息框會提示出指針相對于屏幕的 x 和 y 坐標(biāo)。 </p> </body> </html>
運(yùn)行實(shí)例 ?
點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線實(shí)例