指针位置

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function show_coords(event)
  5. {
  6. x=event.clientX
  7. y=event.clientY
  8. alert("X 坐标: " + x + ", Y 坐标: " + y)
  9. }
  10. </script>
  11. </head>
  12.  
  13. <body onmousedown="show_coords(event)">
  14. <p>请在文档中点击。提示框会显示出指针的 x 和 y 坐标。</p>
  15. </body>
  16.  
  17. </html>