3.demo.html 611 B

1234567891011121314151617181920212223242526
  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: 300px;
  10. height: 300px;
  11. background: aqua;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <button id="btn">改变</button>
  17. <div class="box"></div>
  18. <script>
  19. var btn = document.getElementById("btn");
  20. var box = document.querySelector(".box");
  21. btn.onclick = function() {
  22. box.style.background = 'red'
  23. }
  24. </script>
  25. </body>
  26. </html>