js实现刷新iframe的方法汇总 js 刷新当前页面
js实现刷新iframe的方法汇总
http://www.jb51.net/article/65013.htm
转载 2015-04-27 投稿:hebedich
我要评论
javascript实现刷新iframe的方法的总结,现在假设存在下面这样一个iframe,则刷新该iframe的N种方法有:
<iframe src="1.htm" name="ifrmname" id="ifrmid"></iframe>
第一种方法:用iframe的name属性定位
<input type="button" name="Button" value="Button" onclick="document.frames('ifrmname').location.reload()">
或者
<input type="button" name="Button" value="Button" onclick="document.all.ifrmname.document.location.reload()">
第二种方法:用iframe的id属性定位
<input type="button" name="Button" value="Button" onclick="ifrmid.window.location.reload()">
第三种方法:当iframe的src为其它网站地址(即跨域操作时)
<input type="button" name="Button" value="Button" onclick="window.open(document.all.ifrmname.src,'ifrmname','')">
父页面中存在两个iframe,一个iframe中是一个链接列表,其中的链接指向另一个iframe,用于显示内容。现在当内容内容添加后,在链接列表中添加了一条记录,则需要刷新列表iframe。
在内容iframe的提交js中使用parent.location.reload()将父页面全部刷新,因为另一个iframe没有默认的url,只能通过列表选择,所以只显示了列表iframe的内容。
使用window.parent.frames["列表iframe名字"].location="列表url"即可进刷新列表iframe,而内容iframe在提交后自己的刷新将不受影响。
document.frames("refreshAlarm").location.reload(true);
document.frames("refreshAlarm").document.location.reload(true);
document.frames("refreshAlarm").document.location="http://www.jb51.net/";
document.frames("refreshAlarm").src="http://www.jb51.net/";
注意区别:document.all.refreshAlarm 或 document.frames("refreshAlarm") 得到的是http://www.jb51.net/页面中那个iframe标签,所以对src属性操作有用。
document.frames("refreshAlarm").document得到iframe里面的内容,也就是"http://www.jb51.net/"中的内容。
javascript(js)自动刷新页面的实现方法总结:
间隔10秒刷新一次,在页面的head标签中加入下面的代码段:
<meta http-equiv="refresh"content="10;url=跳转的页面或者是需要刷新的页面URL地址">
定时刷新页面(间隔2秒刷新一下页面):
<script language="javascript">
setTimeout("location.href='url'",2000);//url是要刷新的页面URL地址
</script>
直接刷新页面事件:
<script language="javascript">
window.location.reload(true);
//如需刷新iframe,则只需把window替换为响应的iframe的name属性值或ID属性值
</script>
直接刷新页面事件:
<script language=''javascript''>
window.navigate("本页面url");
</script>
直接刷新页面事件:
function abc(){
window.location.href="/blog/window.location.href";
setTimeout("abc()",10000);
}
刷新框架页:
<script language="javascript">
top.leftFrm.location.reload();
parent.frmTop.location.reload();
</script>
以上所述就是本文的全部内容了,希望大家能够喜欢。
您可能感兴趣的文章:
js 刷新当前页面
http://www.runoob.com/w3cnote/js-refresh-current-page.html
分类 编程技术
本文为大家介绍三种 js 刷新当前页面的方法:
- reload() 方法;
- replace() 方法;
- 页面自动刷新;
方法1:reload() 方法
reload()方法用于刷新当前文档。
reload() 方法类似于你浏览器上的刷新页面按钮。
location.reload();
更多关于reload() 方法请参考文档:http://www.runoob.com/jsref/met-loc-reload.html
方法2:replace() 方法
replace() 方法可用一个新文档取代当前文档。。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<script>
function replaceDoc()
{
window.location.replace("http://www.runoob.com")
}
</script>
</head>
<body>
<input type="button" value="载入新文档替换当前页面" onclick="replaceDoc()">
</body>
</html>
更多关于replace() 方法请参考文档:http://www.runoob.com/jsref/met-loc-replace.html
方法3:页面自动刷新
页面自动刷新:把如下代码加入<head>区域中
<meta http-equiv="refresh" content="5">
其中5指每隔5秒刷新一次页面。

浙公网安备 33010602011771号