3_DOM控制标签内容.html 594 B

1234567891011121314151617181920212223
  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 id="box1">hello world</div>
  10. <script>
  11. var oBox = document.getElementById("box1");
  12. // 修改当前标签内的文本内容
  13. // oBox.innerText = "hello DOM";
  14. // oBox.innerText = "<h1>hello DOM</h1>";
  15. // 修改当前标签内容 以html标签格式 它能够渲染html标签
  16. oBox.innerHTML = "<h1>hello DOM</h1>";
  17. </script>
  18. </body>
  19. </html>