9_DOM修改样式.html 868 B

1234567891011121314151617181920212223242526272829303132
  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: 100px;
  10. height: 100px;
  11. background-color: red;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <div class="box"></div>
  17. <script>
  18. var oBox = document.getElementsByClassName("box")[0];
  19. oBox.onclick = function(){
  20. oBox.style.width = "200px";
  21. // 如果出现 background-color 修改成backgroundColor 驼峰命名方式
  22. oBox.style.backgroundColor="blue";
  23. this.style.height = "400px";
  24. }
  25. var oHtml = document.documentElement;
  26. console.log(oHtml)
  27. oHtml.onclick = function(){
  28. console.log("click")
  29. }
  30. </script>
  31. </body>
  32. </html>