17_其他事件.html 908 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. #box{
  9. width: 200px;
  10. height: 200px;
  11. background-color: red;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <div id="box"></div>
  17. <button id="btn">点击我</button>
  18. <script>
  19. // 获取元素
  20. var box = document.querySelector("#box");
  21. var btn = document.querySelector("#btn");
  22. // 鼠标按下事件
  23. btn.onmousedown = function(){
  24. console.log("鼠标按下");
  25. }
  26. // 鼠标松开事件
  27. btn.onmouseup = function(){
  28. console.log("鼠标松开");
  29. }
  30. // 鼠标移动事件
  31. box.onmousemove = function(){
  32. console.log("鼠标移动");
  33. }
  34. </script>
  35. </body>
  36. </html>