for 循环

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <p>单击按钮循环一段代码五次。</p>
  6.  
  7. <button onclick="myFunction()">试一试</button>
  8.  
  9. <p id="demo"></p>
  10.  
  11. <script>
  12. function myFunction() {
  13. var x = "", i;
  14. for (i=0; i<5; i++) {
  15. x = x + "数字是:" + i + "<br>";
  16. }
  17. document.getElementById("demo").innerHTML = x;
  18. }
  19. </script>
  20.  
  21. </body>
  22. </html>