js刷新当前页面_js后退_js前进的方法_html frame刷新页面的方法
程序员文章站
2022-03-01 16:02:56
...
今天在维护我的博客的时候、需有用到刷新当前页面的功能
在网上查了一下、方法有很多、下面我来总结一下刷新页面以及前进后退的方法
Javascript刷新页面的几种方法
1 history.go(0) 2 location.reload() 3 location=location 4 location.assign(location) 5 document.execCommand(‘Refresh‘) 6 window.navigate(location) 7 location.replace(location) 8 document.URL=location.href.你的uri
js后退的方法
history.go(-1)
js前进的方法
history.go(1)
如果你的页面是用 html frame 架构的、刷新方法如下
top.location.reload(); 刷新整页 self.location.reload(); 刷新本页 window.parent.location.href=´´ 框架页重定向
以下是自动刷新页面的方法
页面自动刷新:把如下代码加入<head>区域中其中20指每隔20秒刷新一次页面
<meta http-equiv="refresh" content="20"> <body onload="opener.location.reload()"> 开窗时刷新 <body onUnload="opener.location.reload()"> 关闭时刷新
例如在数据添加成功后弹出对话框并刷新页面
alert(´相册分类添加成功´); window.location.reload();", true);
注:如果你是用的 PHP 的话、你需要这样写代码
echo "<script language=´javascript´ type=´text/javascript´>"; echo "location.reload();"; echo "</script>";