`

关于页面的传值

阅读更多

  有两个页面,父页面与子页面,父页面要传一个参数给子页面,

  具体做法有两种一种使用

<html xmlns:v = "urn:schemas-microsoft-com:vml">
<head>
<style>
</style>
</head>

<body onload='' style='margin-top:0px;margin-right:0px;margin-left:0px;margin-bottom:0px; background-color: #C4D2F0;' scroll='no' >
<input type="button" value="Test " onclick="openWindows();">
<input type="button" value="TestClose " onclick="closeWindows();">
  </body>
  <script>
   //测试
   var aWin;
    function openWindows(){
            window.showModalDialog("test.html",ar);
     }

    function closeWindows(){
       window.close();
     }
  </script>
</html>

 

------------------html2

var ar=window.dialogArguments;

 

这种方式不支持FF,而且弹出窗口后父亲页面会等待子页面的输入

 

2 采用open 的方法

   先open 一个窗口, 将传递的变量弄成全局变量,或者 面向 对象的写法写到function里面 ,父亲页面写个 get方法获得变量

  子页面调用 父页面的方法获得这个变量

 

  子页面调用父页面的写法 转载于http://www.iteye.com/topic/295075

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

window.parent与window.opener的区别 javascript调用主窗口方法
1:   window.parent 是iframe页面调用父页面对象
举例:
a.html

Html代码 复制代码
  1. <html>  
  2.     <head><title>父页面</title></head>  
  3. <body>  
  4.     <form name="form1" id="form1">  
  5.          <input type="text" name="username" id="username"/>  
  6.     </form>  
  7.     <iframe src="b.html" width=100%></iframe>  
  8. </body>  
  9. </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中写

Html代码 复制代码
  1. <script type="text/javascript">  
  2.     var _parentWin = window.parent ;   
  3.     _parentWin.form1.username.value = "xxxx" ;   
  4. </script>  
<script type="text/javascript">
    var _parentWin = window.parent ;
    _parentWin.form1.username.value = "xxxx" ;
</script>

实例地址:  http://www.cnspry.cn/blog/attachments/window.parent 实例/a.html
源码:
1.a.html

Html代码 复制代码
  1. <html>  
  2. <head>  
  3.     <title>主页面</title>  
  4.     <script>  
  5.         /** 为测试IFrame子窗口调用父窗口的全局变量而添加的测试变量 */   
  6.         var parentVairous = "为测试IFrame子窗口调用父窗口的全局变量而添加的测试变量";   
  7.         function parentInvokeIFrame()   
  8.         {   
  9.                 var iframeTest = document.frames["iframeTest"]; //使用document.getElementById("iframeTest");同样可以   
  10.                 alert(iframeTest.document.body.innerHTML);   
  11.                 alert(iframeTest.iFrameVair);   
  12.         }   
  13.     </script>  
  14. </head>  
  15. <body>  
  16. <form name="form1" id="form1">  
  17.     <input type="text" name="username" id="username"/>  
  18.     <input type = "button" value = "父窗口调用IFrame子窗口中的内容" onclick = 'parentInvokeIFrame()'/>  
  19. </form>  
  20. <iframe src="b.html" width = '100%' id = 'iframeTest'></iframe>  
  21. </body>  
  22. </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 = 'parentInvokeIFrame()'/>
</form>
<iframe src="b.html" width = '100%' id = 'iframeTest'></iframe>
</body>
</html>

1.b.html

Html代码 复制代码
  1. <html>  
  2.      <head>  
  3.          <title></title>  
  4.          <script type="text/javascript">  
  5.             /** 为测试父窗体调用IFrame子窗体的全局函数而添加的子窗口全局函数 */   
  6.          var iFrameVair = "测试父窗体调用IFrame子窗体的全局函数";   
  7.             
  8.          function UpdateParent()   
  9.          {   
  10.              var _parentWin = window.parent ;   
  11.              _parentWin.form1.username.value = "xxxx" ;   
  12.          }   
  13.             
  14.          function childInvokeParent()   
  15.          {   
  16.                 var parentVairous = window.parent.window.parentVairous;   
  17.                 alert(parentVairous);      
  18.          }   
  19.        </script>  
  20.     </head>  
  21. <body>  
  22.      <form name="form1" id="form1">  
  23.          <p>  </p>  
  24.          <p align="center">  
  25.             <input type = "button"    
  26.                    name = "button"    
  27.                    id = "button"    
  28.                    value = "更新主页面的UserName内容"    
  29.                    onclick = "UpdateParent()">  
  30.             <input type = "button"  
  31.                          name = "button2"  
  32.                          id = "button2"  
  33.                          value = "测试IFrame子窗口调用父窗口的全局变量"  
  34.                          onclick = "childInvokeParent();"/>  
  35.          </p>  
  36.          <p>  </p>  
  37.      </form>  
  38. </body>  
  39. </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 打开的子页面调用父页面对象
实例地址:  http://www.cnspry.cn/blog/attachments/window.opener 实例/a.html

源码:
2.a.html

Html代码 复制代码
  1. <html>  
  2. <head>  
  3.      <title>主页面</title>  
  4.      <script type="text/javascript">  
  5.      /** 为测试IFrame子窗口调用父窗口的全局变量而添加的测试变量 */     
  6.      var parentVairous = "为测试IFrame子窗口调用父窗口的全局变量而添加的测试变量";    
  7.         
  8.      /**    
  9.       *  因为不同于IFrame(IFrame有id,window.open()与IFrame的父子窗口的模式不同),   
  10.       *  所以当是通过window.open()方法打开一个新窗口使, 必须有一个新窗口的对象    
  11.       *  当然必须先让子窗口弹出来, 才能调用子窗口中的变量, 否则抛出异常   
  12.       */   
  13.      var OpenWindow;   
  14.         
  15.      function openSubWin()   
  16.      {   
  17.          OpenWindow = window.open('b.html', 'newwindow', 'height=1024width=1300top=0left=0toolbar=nomenubar=yesscrollbars=yes,resizable=yes,location=nostatus=no');   
  18.      }   
  19.      function parentInvokeChild()     
  20.      {     
  21.          if(OpenWindow)//当然必须先让子窗口弹出来, 才能调用子窗口中的变量, 否则抛出异常            
  22.          {   
  23.                alert(OpenWindow.iFrameVair);   
  24.          }   
  25.      }    
  26.      </script>  
  27. </head>  
  28. <body>  
  29.     <form name="form1" id="form1">  
  30.         <input type="text" name="username" id="username"/>  
  31.         <input type="button" value="弹出子页面" onclick = "openSubWin()">  
  32.         <input type="button" value="测试调用弹出窗口中的全局变量" onclick = "parentInvokeChild()">  
  33.     </form>  
  34. </body>  
  35. </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>

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

经过hanjs的提醒,确实需要注意的是,模态窗口的子窗口是没有办法修改父窗口页面中的任何内容的。
例如修改: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');
为:OpenWindow = window.showModalDialog("b.html",'newwindow',"dialogHeight:100px,center:yes,resizable:no,status:no");
在子窗口中当希望修改父窗口中的内容时,会弹出“某某”为空或不是对象的错误,而这里的“某某”就是你想修改的父窗口中的内容

声明:JavaEye文章版权属于作者,受法律保护。没有作者书面许可不得转载
个人认为,看待JavaScript 所有的方法 ,对象都已经读到客户端得内存中了,除了跨域以外的,都可以直接或者间接调用
  可以将JavaScript 代码按照MVC方式来编写,  虽然这种代码量会增加但是很清晰。
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics