摘要:
自动刷新页面的实现方法总结:1) 10表示间隔10秒刷新一次 2) 如果是你要刷新某一个iframe就把window给换成frame的名字或ID号 3) 4>function abc() { window.location.href="/blog/window.location.href"; setTimeout("abc()",10000); }刷新本页: Response.Write("")刷新父页: Response.Write("")转到指定页: Response.Write("" 阅读全文