event.html 899 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <div style="width: 600px; height: 300px; margin: 0 auto; margin-top: 100px">
  9. <p>
  10. <img src="off.png" />
  11. </p>
  12. </div>
  13. <button id="on" onclick="on()" >开灯</button>
  14. <button id="off" onclick="off()" >关灯</button>
  15. <script>
  16. function on() {
  17. document.querySelector("img").src = "on.png"
  18. }
  19. function off() {
  20. document.querySelector("img").src = "off.png"
  21. }
  22. // document.querySelector("#on").addEventListener("click", function(){
  23. // on();
  24. // })
  25. // document.querySelector("#off").addEventListener("click", function(){
  26. // off();
  27. // })
  28. document.querySelector("#on").onclick = on;
  29. document.querySelector("#off").onclick = off;
  30. </script>
  31. </body>
  32. </html>