example01.html 473 B

1234567891011121314151617181920212223
  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. var span = document.getElementById('counter');
  11. var num = 5;
  12. setTimeout(function() {
  13. num -= 1;
  14. if (num > 0) {
  15. span.textContent = num;
  16. setTimeout(arguments.callee, 1000);
  17. } else {
  18. location.href = 'http://www.baidu.com';
  19. }
  20. }, 1000);
  21. </script>
  22. </body>
  23. </html>