日期:2014-05-16  浏览次数:20321 次

javascript 父窗口与子窗口的互相调用(window.open,window.opener)

主要实现父子关系的页面

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('b.html', 'newwindow', 'height=1024, width=1300, top=0, left=0, toolbar=no, menubar=yes, scrollbars=yes,resizable=yes,location=no, status=no');
     }
     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>

?