onmousedown - 当点击鼠标时:提示点击了哪个按钮

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script>
  5. function WhichButton(event) {
  6. alert("You pressed button: " + event.button)
  7. }
  8. </script>
  9. </head>
  10. <body>
  11.  
  12. <div onmousedown="WhichButton(event);">单击此文本(使用其中一个鼠标按钮)
  13. <p>
  14. 0 指定鼠标左键<br>
  15. 1 指定鼠标中键<br>
  16. 2 指定鼠标右键
  17. </p>
  18.  
  19. <p>
  20. <b>注释:</b>Internet Explorer 8及更早版本返回另一个结果:<br>
  21. 1 指定鼠标左键<br>
  22. 4 指定鼠标中键<br>
  23. 2 指定鼠标右键
  24. </p>
  25. </div>
  26. </body>
  27. </html>