Latest web development tutorials

screenY 이벤트 속성

이벤트 객체 참조 이벤트 객체

정의 및 사용

이벤트가 화면의 수직 축에 대하여 발생할 때 screenY 이벤트 속성은 마우스 포인터를 리턴한다.

문법

event.screenY


이벤트가 발생하면 다음의 예에서는, 마우스 포인터의 좌표를 나타낸다 :

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>本教程(w3big.com)</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>
在文档中点击某个位置。消息框会提示出指针相对于屏幕的 x 和 y 坐标。
</p>

</body>
</html>

»시도


이벤트 객체 참조 이벤트 객체