三个是比较快的
window.location.reload();
window.history.go(0);
document.execCommand('Refresh');
让页面自动刷新方法
<meta http-equiv="refresh" content="1">//1秒刷新一次页面
<meta http-equiv="refresh" content="1;url=http://www.caohongyuan.cn">//1秒后跳转到
http://www.caohongyuan.cn页面
Js脚本:
setTimeout('window.location.reload()',1000); //1秒刷新一次