<script type="text/javascript">
var i = 5;
var intervalid;
intervalid = setInterval("fun()", 1000);
function fun() {
if (i == 0) {
window.location.href = "<%=basePath%>home";
clearInterval(intervalid);
}
document.getElementById("mes").innerHTML = i;
i--;
}
</script>

<span id="littleTip">将在(<strong id="mes">5</strong>)秒钟后返回首页!</span></div>

最新文章

  1. 搭建TFS 2015 Build Agent环境(一)
  2. iOS-数据持久化详细介绍
  3. 【皇甫】☀Spring开题中...
  4. android 案例二 登录界面
  5. 连接SQL SERVER 2008需要加端口号
  6. ECSHOP后台商品列表显示商品缩略图
  7. POJ 3228 Gold Transportation(带权并查集,好题)
  8. WPF学习笔记-TextBox光标位置如何放到最后?
  9. poj1664 (递归)
  10. Java分页类 Page
  11. App项目升级Xcode7&amp;iOS9(续) - This bundle is invalid. The bundle identifier contains disallowed characters
  12. php的cURL库介绍
  13. B桥接模式ridge
  14. 用友金蝶SQL数据库误格式化恢复 SQL数据库修复 SQL数据库恢复 工具 方法
  15. js原生设计模式——13桥接模式(相同业务逻辑抽象化处理的职责链模式)
  16. Django_xamdin安装与使用
  17. Android异常:android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original
  18. Identity Server 4 - Hybrid Flow - 保护API资源
  19. Runtime &quot;Apache Tomcat v6.0 (3)&quot; is invalid. The JRE could not be found. Edit the server and change the JRE location解决方案
  20. vim编辑器的设置

热门文章

  1. CentOS7.3安装electronic-wechat
  2. JSTL &lt;c:if test=“eq ne lt..”&gt;&lt;/if&gt; 用法
  3. Laravel 下配置 Redis 让缓存、Session 各自使用不同的 Redis 数据库
  4. react native android应用启动画面
  5. 洛谷—— P1908 逆序对
  6. run()和start()的区别
  7. [CODE FESTIVAL 2017]Poor Penguin
  8. 【点分治】【FFT】Gym - 101234D - Forest Game
  9. Problem K: 零起点学算法107——统计元音
  10. Problem C: 调用函数,求a+aa+aaa+....+aa...aa(n个a)