标签:
setTimeout() 方法用于在指定的毫秒数后调用函数或计算表达式. clearTimeout() 方法可取消由 setTimeout() 方法设置的 timeout. function refresh(){ window.location.reload(); } setTimeout(‘refresh()‘, 1000);
js 使页面每隔一秒刷新一次
原文地址:http://my.oschina.net/meng527/blog/520249