1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    2. <html xmlns="http://www.w3.org/1999/xhtml">
    3. <html>
    4. <head>
    5. <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
    6. <title>跳转页面</title>
    7. <mce:script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" mce_src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></mce:script>
    8. <mce:script language="javascript"><!--
    9. $(document).ready(function() {
    10. function jump(count) {
    11. window.setTimeout(function(){
    12. count--;
    13. if(count > 0) {
    14. $('#num').attr('innerHTML', count);
    15. jump(count);
    16. } else {
    17. location.href="login.jsp";
    18. }
    19. }, 1000);
    20. }
    21. jump(3);
    22. });
    23. // --></mce:script>
    24. </head>
    25. <body>
    26. <span style="color:red" mce_style="color:red">欢迎来到******!</span><br/>页面将在3秒后跳转...<br/>还剩<span id="num">3</span>秒
    27. </body>
    28. </html>
05-11 18:39