遍历 HTML 标题

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <p>单击按钮从 1 到 6 循环,以生成 HTML 标题。</p>
  6.  
  7. <button onclick="myFunction()">试一试</button>
  8.  
  9. <div id="demo"></div>
  10.  
  11. <script>
  12. function myFunction() {
  13. var x ="", i;
  14. for (i=1; i<=6; i++) {
  15. x = x + "<h" + i + ">标题 " + i + "</h" + i + ">";
  16. }
  17. document.getElementById("demo").innerHTML = x;
  18. }
  19. </script>
  20.  
  21. </body>
  22. </html>