如何实现JavaScript中刷新父页面的多种方法详解?

2026-04-06 14:331阅读0评论SEO资讯
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计310个文字,预计阅读时间需要2分钟。

如何实现JavaScript中刷新父页面的多种方法详解?

1. 使用iframe刷新父页面

2. 弹出子页面刷新父页面

3. 子窗口刷新父窗口

1.用iframe、弹出子页面刷新父页面iframe

<script language=JavaScript>   parent.location.reload(); </script>

2.弹出子页面

<script language=JavaScript> window.opener.location.reload(); </script>

3.子窗口刷新父窗口

<script language=JavaScript> self.opener.location.reload(); </script>

4.刷新以open()方法打开的窗口

<script language=JavaScript> window.opener.location.href=window.opener.location.href; </script>

5.刷新以winodw.showModelDialog()方法打开的窗口

<script language="javascript"> window.parent.dialogArguments.document.execCommand('Refresh'); </script>

6.点击 layer 中刷新当前页

如何实现JavaScript中刷新父页面的多种方法详解?

var iframes= parent.document.getElementsByTagName('iframe'); for(var i=0;i<iframes.length;i++){   var src=iframes[i].contentWindow.location.href;   console.log( src);   if(src.indexOf("table.jsp")!=-1){     console.log( "刷新:"+src);     parent.document.getElementsByTagName('iframe')[i].contentWindow.location.reload(true);   } }

parent.document.getElementById('my_iframe').contentWindow.location.reload(true);

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持易盾网络。

本文共计310个文字,预计阅读时间需要2分钟。

如何实现JavaScript中刷新父页面的多种方法详解?

1. 使用iframe刷新父页面

2. 弹出子页面刷新父页面

3. 子窗口刷新父窗口

1.用iframe、弹出子页面刷新父页面iframe

<script language=JavaScript>   parent.location.reload(); </script>

2.弹出子页面

<script language=JavaScript> window.opener.location.reload(); </script>

3.子窗口刷新父窗口

<script language=JavaScript> self.opener.location.reload(); </script>

4.刷新以open()方法打开的窗口

<script language=JavaScript> window.opener.location.href=window.opener.location.href; </script>

5.刷新以winodw.showModelDialog()方法打开的窗口

<script language="javascript"> window.parent.dialogArguments.document.execCommand('Refresh'); </script>

6.点击 layer 中刷新当前页

如何实现JavaScript中刷新父页面的多种方法详解?

var iframes= parent.document.getElementsByTagName('iframe'); for(var i=0;i<iframes.length;i++){   var src=iframes[i].contentWindow.location.href;   console.log( src);   if(src.indexOf("table.jsp")!=-1){     console.log( "刷新:"+src);     parent.document.getElementsByTagName('iframe')[i].contentWindow.location.reload(true);   } }

parent.document.getElementById('my_iframe').contentWindow.location.reload(true);

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持易盾网络。