html
iteye_15129
这个作者很懒,什么都没留下…
展开
-
jquery 打开页面window.location和window.open的区别
window.location = "http://www.xxxxxxxx.net" 跳转后有后退功能 其实应该是 window.location.hrefwindow.location.replace("http://www.xxxxxxxx.net") 跳转后没有后退功能 window.open("http://www.xxxxxxxx.net") 要新的窗口打开链接 这个一般用于简单的...原创 2013-09-11 15:58:35 · 253 阅读 · 0 评论 -
页面刷新的几种方法
<meta http-equiv="refresh" content="5"><!-- 在这里设置,每5秒钟刷新一次页面--> setInterval("doRefresh()",8000);//定时刷新 大约为8秒间隔 setTimeOut("doRefresh()",8000);//设置页面过期时间 大约为8秒间隔 ...原创 2014-01-15 15:18:17 · 135 阅读 · 0 评论