js刷新页面得重新加载和页面的刷新
1、reload 方法,该方法强迫浏览器刷新当前页面。
语法:location.reload([bForceGet])
参数: bForceGet, 可选参数, 默认为 false,从客户端缓存里取当前页。true, 则以 GET 方式,从服务端取最新的页面, 相当于客户端点击 F5(“刷新”)
2、 replace 方法,该方法通过指定URL替换当前缓存在历史里(客户端)的项目,因此当使用replace方法之后,你不能通过“前进”和“后退”来访问已经被替换的URL。
语法: location.replace(URL)
通常使用: location.reload() 或者是 history.go(0) 来做。
此方法类似客户端点F5刷新页面,所以页面method=”post”时,会出现”网页过期”的提示。
因为Session的安全保护机制。
当调用 location.reload() 方法时, aspx页面此时在服务端内存里已经存在, 因此必定是 IsPostback 的。
如果有这种应用: 需要重新加载该页面,也就是说期望页面能够在服务端重新被创建,期望是 Not IsPostback 的。
这里,location.replace() 就可以完成此任务。被replace的页面每次都在服务端重新生成。
代码: location.replace(location.href);
3、返回并刷新页面:
location.replace(document.referrer);
document.referrer //前一个页面的URL
不要用 history.go(-1),或 history.back();来返回并刷新页面,这两种方法不会刷新页面。
4、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
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
5、自动刷新页面的方法:
5.1、页面自动刷新:把如下代码加入区域中,其中20指每隔20秒刷新一次页面
- <meta http-equiv=“refresh” content=“20”>
<meta http-equiv="refresh" content="20">
5.2、页面自动跳转:把如下代码加入区域中,其中20指隔20秒后跳转到https://www.baidu.com页面
- <meta http-equiv=“refresh” content=“20;url=”https://www.baidu.com”>
- 1
<meta http-equiv="refresh" content="20;url="https://www.baidu.com">
5.3、页面自动刷新js版
- <script language=“JavaScript”>
- function myrefresh()
- {
- window.location.reload();
- }
- setTimeout(’myrefresh()’,1000); //指定1秒刷新一次
- </script>
<script language="JavaScript">
function myrefresh()
{
window.location.reload();
}
setTimeout('myrefresh()',1000); //指定1秒刷新一次
</script>
6、JS刷新框架的脚本语句
- //刷新包含该框架的页面用
- <script language=JavaScript>
- parent.location.reload();
- </script>
- //子窗口刷新父窗口
- <script language=JavaScript>
- self.opener.location.reload();
- </script>
- ( 或 <a href=”javascript:opener.location.reload()”>刷新</a> )
- //刷新另一个框架的页面用
- <script language=JavaScript>
- parent.另一FrameID.location.reload();
- </script>
//刷新包含该框架的页面用
<script language=JavaScript>
parent.location.reload();
</script>
//子窗口刷新父窗口
<script language=JavaScript>
self.opener.location.reload();
</script>
( 或 <a href="javascript:opener.location.reload()">刷新</a> )
//刷新另一个框架的页面用
<script language=JavaScript>
parent.另一FrameID.location.reload();
</script>
如果想关闭窗口时刷新或想开窗时刷新,在中调用以下语句即可。
- <body οnlοad=“opener.location.reload()”> 开窗时刷新
- <body onUnload=”opener.location.reload()”> 关闭时刷新
- <script language=”javascript”>
- window.opener.document.location.reload()
- </script>
<body οnlοad="opener.location.reload()"> 开窗时刷新
<body onUnload="opener.location.reload()"> 关闭时刷新
<script language="javascript">
window.opener.document.location.reload()
</script>
例如:
下面以三个页面分别命名为frame.html、top.html、bottom.html为例来具体说明如何做。
frame.html 由上(top.html)下(bottom.html)两个页面组成,代码如下:
- <!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.0 Transitional//EN”>
- <HTML>
- <HEAD>
- <TITLE> frame </TITLE>
- </HEAD>
- <frameset rows=”50%,50%”>
- <frame name=top src=”top.html”>
- <frame name=bottom src=”bottom.html”>
- </frameset>
- </HTML>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> frame </TITLE>
</HEAD>
<frameset rows="50%,50%">
<frame name=top src="top.html">
<frame name=bottom src="bottom.html">
</frameset>
</HTML>
现在假设top.html (即上面的页面) 有七个button来实现对bottom.html (即下面的页面) 的刷新,可以用以下七种语句,哪个好用自己看着办了。
top.html 页面的代码如下:
- <!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.0 Transitional//EN”>
- <HTML>
- <HEAD>
- <TITLE> top.html </TITLE>
- </HEAD>
- <BODY>
- <input type=button value=”刷新1” οnclick=“window.parent.frames[1].location.reload()”><br>
- <input type=button value=”刷新2” οnclick=“window.parent.frames.bottom.location.reload()”><br>
- <input type=button value=”刷新3” οnclick=“window.parent.frames[‘bottom’].location.reload()”><br>
- <input type=button value=”刷新4” οnclick=“window.parent.frames.item(1).location.reload()”><br>
- <input type=button value=”刷新5” οnclick=“window.parent.frames.item(‘bottom’).location.reload()”><br>
- <input type=button value=”刷新6” οnclick=“window.parent.bottom.location.reload()”><br>
- <input type=button value=”刷新7” οnclick=“window.parent[‘bottom’].location.reload()”><br>
- </BODY>
- </HTML>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> top.html </TITLE>
</HEAD>
<BODY>
<input type=button value="刷新1" οnclick="window.parent.frames[1].location.reload()"><br>
<input type=button value="刷新2" οnclick="window.parent.frames.bottom.location.reload()"><br>
<input type=button value="刷新3" οnclick="window.parent.frames['bottom'].location.reload()"><br>
<input type=button value="刷新4" οnclick="window.parent.frames.item(1).location.reload()"><br>
<input type=button value="刷新5" οnclick="window.parent.frames.item('bottom').location.reload()"><br>
<input type=button value="刷新6" οnclick="window.parent.bottom.location.reload()"><br>
<input type=button value="刷新7" οnclick="window.parent['bottom'].location.reload()"><br>
</BODY>
</HTML>
下面是bottom.html页面源代码,为了证明下方页面的确被刷新了,在装载完页面弹出一个对话框。
- <!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.0 Transitional//EN”>
- <HTML>
- <HEAD>
- <TITLE> bottom.html </TITLE>
- </HEAD>
- <BODY οnlοad=”alert(‘我被加载了!’)”>
- <h1>This is the content in bottom.html.</h1>
- </BODY>
- </HTML>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> bottom.html </TITLE>
</HEAD>
<BODY οnlοad="alert('我被加载了!')">
<h1>This is the content in bottom.html.</h1>
</BODY>
</HTML>
过程分析
- 1.window指代的是当前页面,例如对于此例它指的是top.html页面。
- 2.parent指的是当前页面的父页面,也就是包含它的框架页面。例如对于此例它指的是framedemo.html。
- 3.frames是window对象,是一个数组。代表着该框架内所有子页面。
- 4.item是方法。返回数组里面的元素。
- 5.如果子页面也是个框架页面,里面还是其它的子页面,那么上面的有些方法可能不行。
- 附:
- 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
1.window指代的是当前页面,例如对于此例它指的是top.html页面。
2.parent指的是当前页面的父页面,也就是包含它的框架页面。例如对于此例它指的是framedemo.html。
3.frames是window对象,是一个数组。代表着该框架内所有子页面。
4.item是方法。返回数组里面的元素。
5.如果子页面也是个框架页面,里面还是其它的子页面,那么上面的有些方法可能不行。
附:
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
7、自动刷新页面
1.页面自动刷新:把如下代码加入区域中
- <meta http-equiv=“refresh” content=“20”>
<meta http-equiv="refresh" content="20">
其中20指每隔20秒刷新一次页面.
2.页面自动跳转:把如下代码加入区域中
http://www.jb51.net“>
其中20指隔20秒后跳转到http://www.jb51.net页面
3.页面自动刷新js版
- <script language=“JavaScript”>
- function myrefresh()
- {
- window.location.reload();
- }
- setTimeout(’myrefresh()’,1000); //指定1秒刷新一次
- </script>
<script language="JavaScript">
function myrefresh()
{
window.location.reload();
}
setTimeout('myrefresh()',1000); //指定1秒刷新一次
</script>
8、java在写Servler,Action等程序时,要操作返回页面的话(如谈出了窗口,操作完成以后,关闭当前页面,刷新父页面)
- 1 PrintWriter out = response.getWriter();
- 2 out.write(”<script type=\”text/javascript\”>”);
- 3 ////子窗口刷新父窗口
- 4 out.write(”self.opener.location.reload();”);
- 5 //关闭窗口
- 6 out.write(”window.opener=null;”);
- 7 out.write(”window.close();”);
- 8 out.write(”</script>”);
1 PrintWriter out = response.getWriter();
2 out.write("<script type=\"text/javascript\">");
3 ////子窗口刷新父窗口
4 out.write("self.opener.location.reload();");
5 //关闭窗口
6 out.write("window.opener=null;");
7 out.write("window.close();");
8 out.write("</script>");
9、JS刷新框架的脚本语句
1.如何刷新包含该框架的页面用
- <script language=JavaScript>
- parent.location.reload();
- </script>
<script language=JavaScript>
parent.location.reload();
</script>
2.子窗口刷新父窗口
- <script language=JavaScript>
- self.opener.location.reload();
- </script>
<script language=JavaScript>
self.opener.location.reload();
</script>
3、如何刷新另一个框架的页面用 (上面的实例以说明了)
- 语句1. window.parent.frames[1].location.reload();
- 语句2. window.parent.frames.bottom.location.reload();
- 语句3. window.parent.frames[”bottom”].location.reload();
- 语句4. window.parent.frames.item(1).location.reload();
- 语句5. window.parent.frames.item(’bottom’).location.reload();
- 语句6. window.parent.bottom.location.reload();
- 语句7. window.parent[’bottom’].location.reload();
语句1. window.parent.frames[1].location.reload();
语句2. window.parent.frames.bottom.location.reload();
语句3. window.parent.frames["bottom"].location.reload();
语句4. window.parent.frames.item(1).location.reload();
语句5. window.parent.frames.item('bottom').location.reload();
语句6. window.parent.bottom.location.reload();
语句7. window.parent['bottom'].location.reload();
4、如果想关闭窗口时刷新或者想开窗时刷新的话,在中调用以下语句即可。
- <body οnlοad=“opener.location.reload()”>
<body οnlοad="opener.location.reload()">
开窗时刷新
- <body onUnload=“opener.location.reload()”>
<body onUnload="opener.location.reload()">
关闭时刷新
- <script language=“javascript”>
- window.opener.document.location.reload()
- </script>
<script language="javascript">
window.opener.document.location.reload()
</script>
转载地址:http://www.jb51.net/article/14397.htm
js刷新页面得重新加载和页面的刷新的更多相关文章
- JS判断访问设备(userAgent)加载不同页面 JS判断客户端操作系统类型(platform)
//平台.设备和操作系统 var system ={ win : false, mac : false, xll : false }; //检测平台 var p = navigator.platfor ...
- mescroll.js简单的上拉加载、下拉刷新插件,带完整注释
声明:本插件模仿自mescroll.js,随手所作,仅以注释提供思路,只实现了部分效果,且没有考虑兼容,有兴趣的朋友随意一看.api大家可参考mescroll.js API汇总一文. demo:点我下 ...
- js引入php 用来加载静态页面 输出到页面中
HTML页面中加入代码 <script type="text/javascript" src="http://www.域名.com/js.php?id=tjyd&q ...
- 在父页面用Iframe加载子页面时,将父页面的title替换成子页面title
报告管理
- html页面 加载完成后再刷新 一次
主要用于第一次加载页面有部分加载bug,再刷新一次即可正常运行. 简单粗暴直接上代码,不带参数,0影响 <Script>function refresh(){ url = location ...
- 当滚动条滚动到页面底部自动加载增加内容的js代码
这篇文章主要介绍了如何使用javscript实现滚动条滚动到页面底部自动加载增加页面内容,需要的朋友可以参考下..1,注册页面滚动事件,window.onscroll = function(){ }; ...
- JqueryEasyUI 解决IE下加载时页面错乱的问题 分类: JavaScript JqueryEasyUI 2014-09-20 09:50 545人阅读 评论(1) 收藏
问题描述: 一直觉得jqueryeasyui在IE下的渲染效果不大好,尤其刚进入页面时的加载,页面会出现布局错乱,虽然是一闪而过,但是给用户的体验不好: 可以通过在页面onload时,增加一个遮罩层, ...
- DCloud-MUI:下拉刷新、上拉加载
ylbtech-DCloud-MUI:下拉刷新.上拉加载 1. 下拉刷新返回顶部 0. http://dev.dcloud.net.cn/mui/pulldown/ 1. 概述 为实现下拉刷新功能,大 ...
- JS 返回上一页并刷新,但不用重新加载整个页面(ajax实现)
需求 有三个页面A.B.C,点击A=>B,点击B=>C,在C中添加内容,点击确定返回到B,此时B页面需重新加载新的内容.再次点击B的返回按钮,希望返回到A而不是C. ===== 2017/ ...
随机推荐
- 学好Python后可从事岗位+学习Python的难度
一.学好Python好就业: 1.Linux运维.Linux运维是必须而且一定要掌握Python语言,Python可以满足Linux运维工程师的工作需求提升效率,总而提升自己的能力.用Python实现 ...
- JVM 发生内存溢出的 8 种原因、及解决办法
阅读本文大概需要 2.3 分钟. 出处:割肉机 cnblogs.com/williamjie/p/11164572.html Java 堆空间 GC 开销超过限制 请求的数组大小超过虚拟机限制 Per ...
- elasticsearch 分片的创建 集群重启分片运作
2016年11月12日ENGINEERING Every shard deserves a home 作者 Joshua Backing Share Here are some great slide ...
- 招聘.net高级工程师
1. 本科及以上学历(必须): 2. 精通.net框架和常见web框架,精通常见设计模式并熟练应用. 3. 扎实的技术功底,有良好的数据结构和算法基础,深入理解面向对象编程思想, 熟悉面向对象的基本设 ...
- c++篇 vc++2010设置和c#一样的代码段,vs2010 两下tab设置
设置vs2010 tab敲两下出 for 片段,因为vs2010的代码片段是在番茄助手里设置的...代码片段管理器中不能设置c++ 所以我只能安装一个番茄助手了... 然后就是修改番茄助手内的[提示] ...
- Python【每日一问】26
问: [基础题]:输入一行字符,分别统计出其中英文字母.空格.数字和其它字符的个数 [提高题]:一球从 100 米高度自由落下,每次落地后反跳回原高度的一半:再落下,求它在第 10 次落地时,共经过多 ...
- 公司某台电脑连接服务器共享文件失败(Windows找不到"\\192.168.1.3)
电脑键入“\\192.168.1.3”后报错“Windows找不到"\\192.168.1.3".请检查拼写并重试.” 我做了两步: 1.检查网络发现是否开启: 控制面板---&g ...
- HTML5微信长按图片不会弹出菜单的解决方法
HTML5微信长按图片不会弹出菜单的解决方法 <pre><div ontouchstart = "return false;"></div>&l ...
- C# 读取配置指定Config文件--亲测通过
直接上代码: public class ConfigUtils { public static String GetKey(String configPath,String key) { Config ...
- Hyper-V虚拟机安装Ubuntu,启动的时候会出现:Please remove the installation medium,then press ENTER
Hyper-V虚拟机安装Ubuntu成功以后,重启的时候页面会一直卡在下面,并报Please remove the installation medium,then press ENTER,这是因为启 ...