10
0

18_DOM创建新节点.html 673 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. </head>
  8. <body>
  9. <div class="box"></div>
  10. <script>
  11. var oBox = document.getElementsByClassName("box")[0];
  12. // oBox.innerHTML = "<h1>hello</h1>"
  13. // createElement 创建新的元素 可以对当前元素任意操作
  14. var oH1 = document.createElement("h1");
  15. oH1.innerText = "你好世界";
  16. oH1.style.color = "red";
  17. oBox.appendChild(oH1);
  18. oH1.onclick = function(){
  19. console.log("hello");
  20. }
  21. </script>
  22. </body>
  23. </html>