clientX 事件屬性返回當事件被觸發時滑鼠指針相對於瀏覽器頁面(或客戶區)的水平坐標。客戶區指的是當前視窗。
基本介紹
- 中文名:clientX
- 客戶區:指的是當前視窗
- 注釋:轉換為文檔坐標的標準方法
- 語法:event.clientX
語法,提示和注釋,實例,
語法
event.clientX
提示和注釋
注釋:2 級 DOM 沒有提供把視窗坐標轉換為文檔坐標的標準方法。在 IE 以外的瀏覽器,使用 window.pageXOffset 和 window.pageYOffset 即可。
實例
下面的例子可顯示出事件發生時滑鼠指針的坐標:
<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>