example04.html 510 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. </head>
  7. <body>
  8. <h3><span id="counter">5</span>秒钟以后跳转到百度</h3>
  9. <script>
  10. +function() {
  11. var counter = 5;
  12. var span = document.getElementById("counter");
  13. setTimeout(function() {
  14. counter -= 1;
  15. if (counter > 0) {
  16. span.textContent = counter;
  17. setTimeout(arguments.callee, 1000);
  18. } else {
  19. location.href = "http://www.baidu.com";
  20. }
  21. }, 1000);
  22. }();
  23. </script>
  24. </body>
  25. </html>