登录  /  注册

javascript调用父窗口的方法有哪些

青灯夜游
发布: 2021-06-23 15:13:48
原创
2922人浏览过

javascript调用父窗口的方法:1、使用“window.parent”语句,可在iframe页面调用父页面对象;2、使用“window.opener”语句,可在“window.open”打开的子页面中调用父页面对象。

javascript调用父窗口的方法有哪些

本教程操作环境:windows7系统、javascript1.8.5版、Dell G3电脑。

javascript调用父窗口(父页面)的方法有哪些

1、window.parent 是iframe页面调用父页面对象 

举例: 

a.html

<html>  
    <head><title>父页面</title></head>  
<body>  
    <form name="form1" id="form1">  
         <input type="text" name="username" id="username"/>  
    </form>  
    <iframe src="b.html" width=100%></iframe>  
</body>  
</html>
登录后复制

如果我们需要在b.htm中要对a.htm中的username文本框赋值,就如很多上传功能,上传功能页在Ifrmae中,上传成功后把上传后的路径放入父页面的文本框中
我们应该在b.html中写

<script type="text/javascript">  
    var _parentWin = window.parent ;  
    _parentWin.form1.username.value = "xxxx" ;  
</script>
登录后复制

源码:

a.html

<html>  
<head>  
    <title>主页面</title>  
    <script>  
        /** 为测试IFrame子窗口调用父窗口的全局变量而添加的测试变量 */  
        var parentVairous = "为测试IFrame子窗口调用父窗口的全局变量而添加的测试变量";  
        function parentInvokeIFrame()  
        {  
                var iframeTest = document.frames["iframeTest"]; //使用document.getElementById("iframeTest");同样可以  
                alert(iframeTest.document.body.innerHTML);  
                alert(iframeTest.iFrameVair);  
        }  
    </script>  
</head>  
<body>  
<form name="form1" id="form1">  
    <input type="text" name="username" id="username"/>  
    <input type = "button" value = "父窗口调用IFrame子窗口中的内容" onclick = &#39;parentInvokeIFrame()&#39;/>  
</form>  
<iframe src="b.html" width = &#39;100%&#39; id = &#39;iframeTest&#39;></iframe>  
</body>  
</html>
登录后复制

b.html

<html>  
     <head>  
         <title></title>  
         <script type="text/javascript">  
            /** 为测试父窗体调用IFrame子窗体的全局函数而添加的子窗口全局函数 */  
         var iFrameVair = "测试父窗体调用IFrame子窗体的全局函数";  
           
         function UpdateParent()  
         {  
             var _parentWin = window.parent ;  
             _parentWin.form1.username.value = "xxxx" ;  
         }  
           
         function childInvokeParent()  
         {  
                var parentVairous = window.parent.window.parentVairous;  
                alert(parentVairous);     
         }  
       </script>  
    </head>  
<body>  
     <form name="form1" id="form1">  
         <p>  </p>  
         <p align="center">  
            <input type = "button"   
                   name = "button"   
                   id = "button"   
                   value = "更新主页面的UserName内容"   
                   onclick = "UpdateParent()">  
            <input type = "button"  
                         name = "button2"  
                         id = "button2"  
                         value = "测试IFrame子窗口调用父窗口的全局变量"  
                         onclick = "childInvokeParent();"/>  
         </p>  
         <p>  </p>  
     </form>  
</body>  
</html>
登录后复制

ps:不能跨域获取,例如iframe的src是'http://www.xxx.ccc/'就不可以

2、window.opener 是window.open 打开的子页面调用父页面对象

源码:

a.html

<html>  
<head>  
     <title>主页面</title>  
     <script type="text/javascript">  
     /** 为测试IFrame子窗口调用父窗口的全局变量而添加的测试变量 */    
     var parentVairous = "为测试IFrame子窗口调用父窗口的全局变量而添加的测试变量";   
       
     /**   
      *  因为不同于IFrame(IFrame有id,window.open()与IFrame的父子窗口的模式不同),  
      *  所以当是通过window.open()方法打开一个新窗口使, 必须有一个新窗口的对象   
      *  当然必须先让子窗口弹出来, 才能调用子窗口中的变量, 否则抛出异常  
      */  
     var OpenWindow;  
       
     function openSubWin()  
     {  
         OpenWindow = window.open(&#39;b.html&#39;, &#39;newwindow&#39;, &#39;height=1024, width=1300, top=0, left=0, toolbar=no, menubar=yes, scrollbars=yes,resizable=yes,location=no, status=no&#39;);  
     }  
     function parentInvokeChild()    
     {    
         if(OpenWindow)//当然必须先让子窗口弹出来, 才能调用子窗口中的变量, 否则抛出异常           
         {  
               alert(OpenWindow.iFrameVair);  
         }  
     }   
     </script>  
</head>  
<body>  
    <form name="form1" id="form1">  
        <input type="text" name="username" id="username"/>  
        <input type="button" value="弹出子页面" onclick = "openSubWin()">  
        <input type="button" value="测试调用弹出窗口中的全局变量" onclick = "parentInvokeChild()">  
    </form>  
</body>  
</html>
登录后复制

b.html

<html>  
    <head>  
        <title>子页面</title>  
        <script type="text/javascript">  
         /** 为测试父窗体调用IFrame子窗体的全局函数而添加的子窗口全局函数 */    
         var iFrameVair = "测试父窗体调用IFrame子窗体的全局函数";  
         function UpdateParent()  
         {  
              var _parentWin = window.opener;  
              _parentWin.form1.username.value = "xxxx" ;  
         }  
         function childInvokeParent()    
         {    
              var parentVairous = window.opener.window.parentVairous;    
              alert(parentVairous);       
         }  
        </script>  
    </head>  
<body>  
<form name="form1" id="form1">  
<p>  </p>  
<p align="center">  
    <input type="button"   
               onclick = "UpdateParent();"   
               name="button"   
               id="button"   
               value="更新主页面的UserName内容">  
    <input type = "button"    
           name = "button2"    
           id = "button2"    
           value = "测试IFrame子窗口调用父窗口的全局变量"    
           onclick = "childInvokeParent();"/>    
</p>  
<p>  </p>  
</form>  
</body>
登录后复制

【相关推荐:javascript学习教程

以上就是javascript调用父窗口的方法有哪些的详细内容,更多请关注php中文网其它相关文章!

智能AI问答
PHP中文网智能助手能迅速回答你的编程问题,提供实时的代码和解决方案,帮助你解决各种难题。不仅如此,它还能提供编程资源和学习指导,帮助你快速提升编程技能。无论你是初学者还是专业人士,AI智能助手都能成为你的可靠助手,助力你在编程领域取得更大的成就。
相关标签:
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2024 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号