JS延迟页面跳转
程序员文章站
2022-07-14 17:58:51
...
第一种
// 延迟2秒跳转
window.setTimeout("window.location='index.jsp'",2000);
第二种
// 延迟5秒跳转
jQuery(document).ready(function(){
setTimeout("window.location = 'index.jsp'", 5000);
});
jQuery(document).ready(function() {});
// 缩写
$(function() {});