마우스 이벤트가 발생하면 pageY 마우스 이벤트 속성을 사용하여 마우스 포인터의 수직 좌표를 가져옵니다. 좌표는 화면을 기준으로 합니다.
예시
다음 코드를 실행하여 pageY를 구현하는 방법을 배울 수 있습니다. JavaScript의 마우스 이벤트.
<!DOCTYPE html> <html> <body> <p onclick="coordsFunc(event)">Click here to get the x (horizontal) and y (vertical) coordinates of the mouse pointer.</p> <script> function coordsFunc(event) { var x_coord = event.pageX; var y_coord = event.pageY; var xycoords = "X coords= " + x_coord + ", Y coords= " + y_coord; document.write(xycoords); } </script> </body> </html>