javascript页面刷新的几种方法 Leone
页面刷新几种办法:
history.go(0);
location.reload();
location=location;
location.assign(location);
document.execCommand('Refresh');
window.navigate(location);
location.replace(location);
document.URL=location.href;
页面中有使用post表单提交的情况下,有几种刷新会被提示;