广

JavaScript

  • IOS开发
  • android开发
  • PHP编程
  • JavaScript
  • ASP.NET
  • ASP编程
  • JSP编程
  • Java编程
  • 易语言
  • Ruby编程
  • Perl编程
  • AJAX
  • 正则表达式
  • C语言
  • 编程开发

    js实现刷新iframe的方法的总结

    2018-04-05 08:31:45 次阅读 稿源:互联网
    零七广告

    javascript实现刷新iframe的方法的总结,现在假设存在下面这样一个iframe,则刷新该iframe的N种方法有:

    1. <iframe src="1.htm" name="ifrmname" id="ifrmid"></iframe> 

    第一种方法:用iframe的name属性定位

    1. <input type="button" name="Button" value="Button" onclick="document.frames('ifrmname').location.reload()"> 

    或者

    1. <input type="button" name="Button" value="Button" onclick="document.all.ifrmname.document.location.reload()"> 

    第二种方法:用iframe的id属性定位

    1. <input type="button" name="Button" value="Button" onclick="ifrmid.window.location.reload()"> 

    第三种方法:当iframe的src为其它网站地址(即跨域操作时)

    1. <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在提交后自己的刷新将不受影响。

    1. document.frames("refreshAlarm").location.reload(true); 
    2. document.frames("refreshAlarm").document.location.reload(true); 
    3. document.frames("refreshAlarm").document.location="http://www.daimajiayuan.com/"
    4. document.frames("refreshAlarm").src="http://www.daimajiayuan.com/"

    注意区别:document.all.refreshAlarm 或 document.frames("refreshAlarm") 得到的是http://www.daimajiayuan.com/页面中那个iframe标签,所以对src属性操作有用。
    document.frames("refreshAlarm").document得到iframe里面的内容,也就是"http://www.daimajiayuan.com/"中的内容。

    javascript(js)自动刷新页面的实现方法总结:

    间隔10秒刷新一次,在页面的head标签中加入下面的代码段:

    1. <meta http-equiv="refresh"content="10;url=跳转的页面或者是需要刷新的页面URL地址"> 

    定时刷新页面(间隔2秒刷新一下页面):

    1. <script language="javascript"> 
    2. setTimeout("location.href='url'",2000);//url是要刷新的页面URL地址 
    3. </script> 

    直接刷新页面事件:

    1. <script language="javascript"> 
    2. window.location.reload(true); 
    3. //如需刷新iframe,则只需把window替换为响应的iframe的name属性值或ID属性值 
    4. </script> 

    直接刷新页面事件:

    1. <script language=''javascript''> 
    2. window.navigate("本页面url"); 
    3. </script> 

    直接刷新页面事件:

    1. function abc(){ 
    2. window.location.href="/blog/window.location.href"
    3. setTimeout("abc()",10000); 

    刷新框架页:

    1. <script language="javascript"> 
    2. top.leftFrm.location.reload(); 
    3. parent.frmTop.location.reload(); 
    4. </script> 

    零七网部分新闻及文章转载自互联网,供读者交流和学习,若有涉及作者版权等问题请及时与我们联系,以便更正、删除或按规定办理。感谢所有提供资讯的网站,欢迎各类媒体与零七网进行文章共享合作。

    零七广告
    零七广告
    零七广告
    零七广告