页面刷新、重定向的方法

一、使用meta

1.页面刷新
2.页面跳转

二、使用js

  1. js页面刷新方法
history.go(0) 
location.reload()
location=location 
location.assign(location) 
document.execCommand('Refresh') 
window.navigate(location) 
location.replace(location) 
document.URL=location.href
  1. js跳转
window.location.href="target.aspx"; 
window.navigate("target.aspx");
window.location.replace("target.aspx");
self.location='target.aspx';
top.location='target.aspx';

你可能感兴趣的:(页面刷新、重定向的方法)