1. 程式人生 > >滑鼠指標位置座標

滑鼠指標位置座標

clientX 事件屬性返回當事件被觸發時滑鼠指標向對於瀏覽器頁面(或客戶區)的水平座標。
客戶區指的是當前視窗。語法
event.clientX
clientY 事件屬性返回當事件被觸發時滑鼠指標向對於瀏覽器頁面(客戶區)的垂直座標。
客戶區指的是當前視窗。語法
event.clientY
下面的例子可顯示出事件發生時滑鼠指標的座標:
<html>
<head>
<script type="text/javascript">
function show_coords(event)
  {
  x=event.clientX
  y=event.clientY
  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 mouse pointer.</p>
</body>
</html>