zoukankan      html  css  js  c++  java
  • 10s后自动跳转

    <div class="jf_register">
    	<h2>您好,欢迎光临<fmt:message key="b2cShowName"/>!<a class="blue" href="<%=path%>/LoginRegist_turnToLogin">请登录</a></h2>
    </div>
    <div class="jf_register_banner">注册成功</div>
    <div class="jf_password">
    <ul>
    <li> 感谢您选择<fmt:message key="b2cShowName"/>,</li><li>您的账号<span>
    <font color=red><strong>${param.bussinessId}</strong></font></span>已经注册成功。 </li>
    <li>系统将会在<strong id="endtime"></strong>秒后跳转到登录页!
            
    <a class="blue" href="<%=path%>/LoginRegist_turnToLogin">直接登录</a></li>
    </ul>
    </div>
    <div class="jf_loginfooter"><fmt:message key="copyright"/> 版权所有 | 
    <a href="Login_loginHelpTips">联系我们</a><fmt:message key="copyrightIcp"/></div>
    
    <script type="text/javascript">
    var i = 10;
    function remainTime(){
    	if(i==0){
    		location.href='<%=path%>';
    	}
    	document.getElementById('endtime').innerHTML=i--;
    	setTimeout("remainTime()",1000);
    }
    remainTime();
    </script>
    

      

  • 相关阅读:
    Pascal's Triangle II
    Pascal's Triangle
    Path Sum II
    Path Sum
    plusOne
    Divide Two Integers
    64. ZigZag Conversion
    63. Swap Nodes in Pairs && Rotate List && Remove Nth Node From End of List
    62. Divide Two Integers
    61. Unique Paths && Unique Paths II
  • 原文地址:https://www.cnblogs.com/karila/p/6222657.html
Copyright © 2011-2022 走看看