提交学习笔记专用
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.

43 lines
780 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"
  27. style="float:left; width:199px; height:99px; border:1px solid #c3c3c3"
  28. onmousemove="cnvs_getCoordinates(event)"
  29. onmouseout="cnvs_clearCoordinates()">
  30. </div>
  31. <br />
  32. <br />
  33. <br />
  34. <div id="xycoordinates"></div>
  35. </body>
  36. </html>