提交学习笔记专用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
772 B

  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <style type="text/css">
  5. body
  6. {
  7. font-size:70%;
  8. font-family:verdana,helvetica,arial,sans-serif;
  9. }
  10. </style>
  11. <script type="text/javascript">
  12. function cnvs_getCoordinates(e)
  13. {
  14. x=e.clientX;
  15. y=e.clientY;
  16. document.getElementById("xycoordinates").innerHTML="Coordinates: (" + x + "," + y + ")";
  17. }
  18. function cnvs_clearCoordinates()
  19. {
  20. document.getElementById("xycoordinates").innerHTML="";
  21. }
  22. </script>
  23. </head>
  24. <body style="margin:0px;">
  25. <p>把鼠标悬停在下面的矩形上可以看到坐标:</p>
  26. <div id="coordiv" style="float:left;width:199px;height:99px;border:1px solid #c3c3c3"
  27. onmousemove="cnvs_getCoordinates(event)"
  28. onmouseout="cnvs_clearCoordinates()"></div>
  29. <br />
  30. <br />
  31. <br />
  32. <div id="xycoordinates"></div>
  33. </body>
  34. </html>