免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3563 | 回复: 0
打印 上一主题 下一主题

javascript 父窗口与子窗口的互相调用(window.open,window.opener) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-11-18 11:35 |只看该作者 |倒序浏览
javascript 父窗口与子窗口的互相调用(window.open,window.opener)






主要实现父子关系的页面

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

a.html

Js代码
  1. 1.<html>   
  2. 2.<head>   
  3. 3.     <title>主页面</title>   
  4. 4.     <script type="text/javascript">   
  5. 5.     /** 为测试IFrame子窗口调用父窗口的全局变量而添加的测试变量 */     
  6. 6.     var parentVairous = "为测试IFrame子窗口调用父窗口的全局变量而添加的测试变量";   
  7. 7.        
  8. 8.     /**   
  9. 9.      *  因为不同于IFrame(IFrame有id,window.open()与IFrame的父子窗口的模式不同),  
  10. 10.      *  所以当是通过window.open()方法打开一个新窗口使, 必须有一个新窗口的对象   
  11. 11.      *  当然必须先让子窗口弹出来, 才能调用子窗口中的变量, 否则抛出异常  
  12. 12.      */  
  13. 13.     var OpenWindow;   
  14. 14.        
  15. 15.     function openSubWin()   
  16. 16.     {   
  17. 17.         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');   
  18. 18.     }   
  19. 19.     function parentInvokeChild()     
  20. 20.     {     
  21. 21.         if(OpenWindow)//当然必须先让子窗口弹出来, 才能调用子窗口中的变量, 否则抛出异常            
  22. 22.         {   
  23. 23.               alert(OpenWindow.iFrameVair);   
  24. 24.         }   
  25. 25.     }   
  26. 26.     </script>   
  27. 27.</head>   
  28. 28.<body>   
  29. 29.    <form name="form1" id="form1">   
  30. 30.        <input type="text" name="username" id="username"/>   
  31. 31.        <input type="button" value="弹出子页面" onclick = "openSubWin()">   
  32. 32.        <input type="button" value="测试调用弹出窗口中的全局变量" onclick = "parentInvokeChild()">   
  33. 33.    </form>   
  34. 34.</body>   
  35. 35.</html>  
  36. <html>
  37. <head>
  38.      <title>主页面</title>
  39.      <script type="text/javascript">
  40.      /** 为测试IFrame子窗口调用父窗口的全局变量而添加的测试变量 */  
  41.      var parentVairous = "为测试IFrame子窗口调用父窗口的全局变量而添加的测试变量";
  42.      
  43.      /**
  44.       *  因为不同于IFrame(IFrame有id,window.open()与IFrame的父子窗口的模式不同),
  45.       *  所以当是通过window.open()方法打开一个新窗口使, 必须有一个新窗口的对象
  46.       *  当然必须先让子窗口弹出来, 才能调用子窗口中的变量, 否则抛出异常
  47.       */
  48.      var OpenWindow;
  49.      
  50.      function openSubWin()
  51.      {
  52.          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');
  53.      }
  54.      function parentInvokeChild()  
  55.      {  
  56.          if(OpenWindow)//当然必须先让子窗口弹出来, 才能调用子窗口中的变量, 否则抛出异常         
  57.          {
  58.                alert(OpenWindow.iFrameVair);
  59.          }
  60.      }
  61.      </script>
  62. </head>
  63. <body>
  64.     <form name="form1" id="form1">
  65.         <input type="text" name="username" id="username"/>
  66.         <input type="button" value="弹出子页面" onclick = "openSubWin()">
  67.         <input type="button" value="测试调用弹出窗口中的全局变量" onclick = "parentInvokeChild()">
  68.     </form>
  69. </body>
  70. </html>

  71. b.html
复制代码
Js代码
  1. 1.<html>   
  2. 2.    <head>   
  3. 3.        <title>子页面</title>   
  4. 4.        <script type="text/javascript">   
  5. 5.         /** 为测试父窗体调用IFrame子窗体的全局函数而添加的子窗口全局函数 */     
  6. 6.         var iFrameVair = "测试父窗体调用IFrame子窗体的全局函数";   
  7. 7.         function UpdateParent()   
  8. 8.         {   
  9. 9.              var _parentWin = window.opener;   
  10. 10.              _parentWin.form1.username.value = "xxxx" ;   
  11. 11.         }   
  12. 12.         function childInvokeParent()     
  13. 13.         {     
  14. 14.              var parentVairous = window.opener.window.parentVairous;     
  15. 15.              alert(parentVairous);        
  16. 16.         }   
  17. 17.        </script>   
  18. 18.    </head>   
  19. 19.<body>   
  20. 20.<form name="form1" id="form1">   
  21. 21.<p>  </p>   
  22. 22.<p align="center">   
  23. 23.    <input type="button"   
  24. 24.               onclick = "UpdateParent();"   
  25. 25.               name="button"   
  26. 26.               id="button"   
  27. 27.               value="更新主页面的UserName内容">   
  28. 28.    <input type = "button"     
  29. 29.           name = "button2"     
  30. 30.           id = "button2"     
  31. 31.           value = "测试IFrame子窗口调用父窗口的全局变量"     
  32. 32.           onclick = "childInvokeParent();"/>     
  33. 33.</p>   
  34. 34.<p>  </p>   
  35. 35.</form>   
  36. 36.</body>  
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP