js定时刷新

页面自动刷新js版 <script language="JavaScript"> function myrefresh() { window.location.reload(); } setTimeout('myrefresh()',1000); //指定1秒刷新一次 </script> Javascript刷新页面的几种方法: 1    history.go(0) 2    location.reload() 3    location=location 4    location.assign(location) 5    document.execCommand('Refresh') 6    window.navigate(location) 7    location.replace(location) 8    document.URL=location.href ASP.NET如何输出刷新父窗口脚本语句 1.   this.response.write("<script>opener.location.reload();</script>"); 2.   this.response.write("<script>opener.window.location.href = opener.window.location.href;</script>"); 3.   Response.Write("<script language=javascript>opener.window.navigate(''你要刷新的页.asp'');</script>")    
posted @ 2012-11-20 16:13  keepnode  阅读(448)  评论(0编辑  收藏  举报