美文网首页
页面刷新、重定向的方法

页面刷新、重定向的方法

作者: 日风和 | 来源:发表于2016-05-18 17:14 被阅读201次

一、使用meta

1.页面刷新<meta http-equiv="refresh" content="5">
2.页面跳转<meta http-equiv="refresh" content="5; url=http://www.jianshu.com"/>

二、使用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';

相关文章

网友评论

      本文标题:页面刷新、重定向的方法

      本文链接:https://www.haomeiwen.com/subject/vkuwrttx.html