js刷新页面window.location.reload(); location刷新页面

Javascript刷新页面的几种方法:
1history.go(0)
2window.location.reload()

window.location.reload(true)
3location=location
4location.assign(location)
5document.execCommand(''Refresh'')
6window.navigate(location)
7location.replace(location)
8document.URL=location.href

Frame框架:

frame.html:

<framesetrows="50%,50%">
<frame name=top src="top.html">
<frame name=bottomsrc="bottom.html">
</frameset>

七种语句:

语句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();
js刷新页面window.location.reload(); location刷新页面
语句6.window.parent.bottom.location.reload();
语句7.window.parent[''bottom''].location.reload();

top.html 页面的代码如下:
<input type=button value="刷新1"onclick="window.parent.frames[1].location.reload()">

bottom.html页面:

<bodyonload="alert(''我被加载了!'')">
<h1>This is the content inbottom.html.</h1>
</body>

1.window指代的是当前页面,例如对于此例它指的是top.html页面。
2.parent指的是当前页面的父页面,也就是包含它的框架页面。例如对于此例它指的是frame.html。
3.frames是window对象,是一个数组。代表着该框架内所有子页面。
4.item是方法。返回数组里面的元素。
5.如果子页面也是个框架页面,里面还是其它的子页面,那么上面的有些方法可能不行。

如果想关闭窗口时刷新或者想开窗时刷新的话,在<body>中调用以下语句即可。

<bodyonload="opener.location.reload()">开窗时刷新
<bodyonUnload="opener.location.reload()">关闭时刷新

//子窗口刷新父窗口
<scriptlanguage=JavaScript>
self.opener.location.reload();
</script>
( 或 <ahref="javascript:opener.location.reload()">刷新</a>)

  

爱华网本文地址 » http://www.aihuau.com/a/25101017/328687.html

更多阅读

如何自动刷新指定的网页 如何自动刷新网页

如何自动刷新指定的网页——简介有时候我们需要一直刷新一个页面,来达到某种目的,而手动刷新又太累,有些人又不想去下载一些插件,怕中毒等情况如何自动刷新指定的网页——工具/原料windows自带记事本如何自动刷新指定的网页——方法/

js发送邮件使用outlook outlook重复发送邮件

使用一下代码,并且转义“&amp;”字符即能达到效果:function getMailAddress(obj){var center=mapObj.getCenter();var zoomLevel=mapObj.getZoomLevel();var locationHref=window.location.href;locationHref=locationHref.substring

window.opener.location.reload()和href()的区别 location.reload

2个方法都是刷新父窗口,但是其中还是有奥妙的哦。window.opener.location.reload(); 这个方法在强迫父窗口的时候,在有些IE浏览器(比如安全设置高)的情况下,会弹出一个确认对话框,提示是不是要重新再刷新一次页面,这可是比较郁闷的事情哦,我

window.location.reload;刷新 微信 location.reload

使用window.location.reload;刷新时,如果提交数据的动作,则会出现讨厌的对话框!解决此问题,应该这样写:window.location.href=window.location.href;window.location.reload;同理,如果是刷新父窗口,应该这样写:window.opener.location.href=

声明:《js刷新页面window.location.reload(); location刷新页面》为网友追梦者分享!如侵犯到您的合法权益请联系我们删除