JS子父窗口互相取值赋值详解介绍

子窗口赋值到父窗口

 代码如下 复制代码
<script>
function openWin(str) {
    window.open(siteurl+"popup/"+str, null,'width=800,height=500'); // 打开窗口
}
</script>
<input type="text" id="title" name="picPath" value="<?php if(isset($pic)) {echo $pic['Path'];}?>" />
<a href="javascript:;" onclick="openWin('searchPic');">图片</a>

 

子窗口:

 代码如下 复制代码

<html>
    <head>
        <title>图片搜索</title>
    </head>
    <body>
        <script>
            function getValue() {
                window.opener.document.getElementById('title').value = document.getElementById('picPath').value // 赋值
                window.close(); // 关闭窗口
            }
        </script>
        <input type="text" id="picPath" />
        <input type="button" value="确定" onclick="getValue()" />
    </body>

1、子窗口与父窗口间通信

(1) 使用window.open()创建的窗口与父窗口通信

可以在子窗口页面中通过window.opener来获取父窗口对象,获取之后子窗口便可以对父窗口执行刷新,传值等操作。

如:

 代码如下 复制代码

window.opener.location.reload(); //子窗口刷新父窗口
window.opener.location.href //获取父窗口href
window.opener.locaiton.pathname //获取父窗口路径名

//刷新父页面
window.location.href=window.location.href ; //重新定位父页面
window.location.reload;

(2) 模态窗口与父窗口通信

通过使用showModelDialog(),及showModelessDialog()方法创建的子窗口想与父窗口通信时,不能通过window.opener

来获取父窗口对象。要实现通信,必须在创建模态子窗口时向子窗口传入父窗口对象。

实现方式为:

在父窗口中:

 代码如下 复制代码

var newWin=window.showModelDialog(url,window,'');
newWin.open();

此时参数window即是父窗口对象

例子

A页面<script type="text/javascript">  
 

 代码如下 复制代码

        function popUp(url) { 
            objSubWin = window.open(url, "Popup", "toolbar=no,scrollbars=no,location=no,statusbar=no,menubar=no,resizable=0,width=300,height=80"); 
            objSubWin.focus(); 
        } 
 
        function SetValue(val) { 
            var amount = document.getElementById('<% = TextBoxAmount.ClientID %>'); 
         amount.value = val; 
     } 
 
    </script> 
[csharp] 
<asp:TextBox ID="TextBoxAmount" runat="server" Enabled="false"></asp:TextBox> 
            <asp:Button ID="Button1" runat="server" Text="Call child window" OnClientClick="popUp('PageB.aspx')" /> 
 
B页面:
<script type="text/javascript">
        function isNumeric(keyCode) {
            return ((keyCode >= 48 && keyCode <= 57) || keyCode == 8)
        }
 
        function calc() {
            if (window.opener != null && !window.opener.closed) {
                var qty = document.getElementById('<% = TextBoxqty.ClientID %>');
                var price = document.getElementById('<% = TextBoxPrice.ClientID %>');
 
                window.opener.SetValue(parseInt(qty.value) * parseInt(price.value));
            }
        }
    </script>
数量<asp:TextBox ID="TextBoxqty" runat="server" onkeydown="return isNumeric(event.keyCode);" onpaste="return false;" Width="50"></asp:TextBox>
            * 单价<asp:TextBox ID="TextBoxPrice" runat="server" onkeydown="return isNumeric(event.keyCode);" onpaste="return false;" Width="50"></asp:TextBox>
            <asp:Button ID="Button1" runat="server" Text="Calculate" OnClientClick="calc()" />

在子窗口中:

需首先获取父窗口对象,然后才能使用父窗口对象。由于父窗口对象是在创建
子窗口时通过传入参数的方式传入的,因此,在子窗口中也只能通过获取窗口参数的方式获取父窗口对象。获取方式如下:

 代码如下 复制代码
var parent=widnow.dialogArguments;

变量parent便是父窗口对象。

例如:

 代码如下 复制代码

//通过子窗口提交父窗口中的表单:form1,提交后执行查询操作
var parent=window.dialogArguments;
parent.document.form1.action="QueryInfor.jsp";
parent.submit();

//刷新父页面
var parent=window.dialogArguments;
parent.location.reload();

//从子窗口传值到父窗口
要实现在模态子窗口中传值到父窗口,需要使用window.returnValue完成

实现方法如下:

在子窗口中:

 代码如下 复制代码

//获取父窗口某字段值,对该值加一后返回父窗口
var parent=window.dialogArguments;
var x=parent.docuement.getElementById("age").value;
x=x+1;

//传回x值
window.returnValue=x;

在父窗口中:

 代码如下 复制代码

//获取来自子窗口的值
var newWin=window.showModelDialog(url,window,'');
if(newWin!=null)
document.getElementByIdx_x("age").value=newWin;

//在子窗口中设置父窗口的值
在子窗口中向父窗口中传入值似乎没有直接设置父窗口中的值来得明了。直接设置父窗口中元素的值显得要更灵活一些,不过具体使用哪种方法要根据实际情况和已有的实现方式而定,因为如果使用了不切实际的方法不仅降低开发效率,也降低了执行效率,往往也会造成不优雅的实现方式和代码风格。

子窗口设置父窗口的值使用方法如下:

子窗口中:

 代码如下 复制代码

var parent=window.dialogArguments;
var x=parent.document.getElementByIdx_x("age").value;

x=x+1;
//设置父窗口中age属性值

parent.document.getElementByIdx_x("age").value=x;

子窗口和父窗口交互的内容,是把子窗口的信息传递给父窗口,并且关闭自己等等,或者是父窗口把自己的信息传递给子窗口等等。

1。父窗口传递信息给子窗口

看代码实例:

 代码如下 复制代码

<script language=javascript>

function outPut()
{
//获取父窗口的文本信息赋值给text
var text = document.abc.text.value;
//打开子窗口,并且把操作句柄赋值给win变量,以下所有操作都是针对win对象的
var win = window.open(”",”mywin”, “menubar=no,width=400,height=100,resizeable=yes”);
//输出基本信息
win.document.writeln(”<title>输出结果</title>”);
win.document.writeln(”你的信息是:<p>”);
//输出从父窗口获取的信息
win.document.writeln(text);
win.document.close();
win.focus();
}
</script>

<form name=abc method=post>
<input type=text name=text size=50>
//调用上面的函数
<input type=button value=提交 onClick=”outPut()”>

</form>

2。子窗口传递参数给父窗口

我们对上面的代码进行改造:

 代码如下 复制代码

<script language=javascript>

function outPut()
{
var text = document.abc.text.value;
var win = window.open(”",”mywin”, “menubar=no,width=400,height=100,resizeable=yes”);
win.document.writeln(”<title>输出结果</title>”);
win.document.writeln(”你的信息是:<p>”);
win.document.writeln(text);
win.document.writeln(”<input type=text name=child value=子窗口信息>”);

//对子窗口本身操作,使用self对象,对父窗口操作使用opener对象,这是关键
//把子窗口中表单的值回传给父窗口,取代父窗口表单以前的值,然后关闭子窗口
win.document.writeln(”<input type=button value=关闭自己 onClick= window.opener.abc.text.value=self.child.value;self.close() >”);
//可以控制关闭父窗口
win.document.writeln(”<input type=button value=关闭父窗口 onClick= window.opener.opener=null;window.opener.close() >”);
//刷新父窗口
win.document.writeln(”<input type=button value=刷新父窗口 onClick= window.opener.location.reload() >”);

win.document.close();
win.focus();
}
</script>

<form name=abc method=post>
<input type=text name=text size=50>
<input type=button value=提交 onClick=”outPut()”>

</form>

3。不是同页面的子窗口和父窗口交互

假设我们涉及到外部程序,比如php、asp等等,那么我们处理的可能是两个页面,比如,上传功能,我们就是需要打开一个新页面,然后再把新页面中的值传递给父页面。

 代码如下 复制代码

局部代码实例:

<input type=”input” value=”" name=”input_tag” id = “input_tag” onKeyUp=”clearPreTagStyle()” size=”40″>
<input type=”hidden” value=”0″ name=”tagid” id=”tagid”>
<input type=”button” value=”标签” onclick=”popUpWindow( tag.php?tag= +escape(document.tryst_form.input_tag.value))”>

以上是父窗口的部分代码,里面的popUpWindow是封装好的window.open函数,所以理解面面的tag.php是另外一个页面就可以,我们需要把当前表单中的值提交给tag.php页面去处理。

tag.php部分代码:

查询标签结果:

 代码如下 复制代码

<a href=”#” name=”tag_1″>生活</a><a href=”#” onclick=”opener.document.tryst_form.input_tag.value = document.tag_1.innerHTML”>加入该标签</a>

<a href=”#” name=”tag_2″>生活秀</a><a href=”#” onclick=”opener.document.tryst_form.input_tag.value = document.tag_2.innerHTML”>加入该标签</a>

这个就是我们的子窗口,g:w7垠件的专e 育,网E我们要把tag_1和tag_2返回到子窗口中,虽然他们不是同一个页面。这里有个知识点,就是我们如何获取连接中的值,我们使用 innerHTML属性:document.tag_2.innerHTML 这个就是我们获取了tag_2的值“生活秀”,我们也能使用其他方法获取,比如:document.all.tag_2.innerHTML,

或者this.innerHTML就是指本身的链接的值。

访问父窗口也是使用opener对象来处理:opener.document.tryst_form.input_tag.value,

就能够改变父窗口的值。

时间: 2024-09-16 20:28:27

JS子父窗口互相取值赋值详解介绍的相关文章

JS子父窗口互相操作取值赋值的方法介绍_javascript技巧

$("#父窗口元素ID",window.parent.document); 对应javascript版本为window.parent.document.getElementByIdx_x("父窗口元素ID"): 取父窗口的元素方法:$(selector, window.parent.document);那么你取父窗口的父窗口的元素就可以用:$(selector, window.parent.parent.document); 类似的,取其它窗口的方法大同小异$(se

js获取FCK编辑器信息/取值/赋值具体方法

编辑器信息  代码如下 复制代码 function getEditorContents(){     var oEditor = FCKeditorAPI.GetInstance("content");     alert(oEditor.GetXHTML(true)); } //向编辑器插入指定代码 function insertHTMLToEditor(codeStr){     var oEditor = FCKeditorAPI.GetInstance("conten

js脚本模态窗口的返回值怎么赋值给给服务器控件DropDownList

问题描述 js脚本模态窗口的返回值怎么赋值给给服务器控件DropDownList我的代码是document.all.TextBox1.value=returnvalues;varddlvalues=document.all.DropDownList1;vars=document.createElement("OPTION");s.innertext=returnvalues;s.value=returnvalues;ddlvalues.options.add(s);可是在页面上是怎么也

JS刷新父窗口的几种方式小结(推荐)_javascript技巧

浮层内嵌iframe及frame集合窗口,刷新父页面的多种方法 <script language=JavaScript> parent.location.reload(); </script> <script language=JavaScript> parent.location.reload(); </script> 弹出子页面 <script language=JavaScript> window.opener.location.reloa

子父窗口之间的操作之小例子

父窗口       用window.openr打开的子父窗口之间的操作跟框架的是不一样的,子窗口和父窗口之间有opener来联系.而源窗口要访问子窗口要通过其句柄来操作.以下小例子希望能帮助新手更了解他们的操作.test.htm <html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><meta name="GE

js中的关联数组与普通数组详解_javascript技巧

var privArr = []; privArr['staProjQueryGrid'] = [{ btn_id : 'but_add', roles : ['2001','2005'] }] console.log(privArr,privArr.staProjQueryGrid[0].btn_id) 第一行是定义一个数组priArr,第二行是给这个数组添加一个属性staProjQueryGird,这个属性值是一个数组.打印结果是  but_add var unPrivArr = [];//

JS中的hasOwnProperty()和isPrototypeOf()属性实例详解_javascript技巧

这两个属性都是Object.prototype所提供:Object.prototype.hasOwnProperty()和Object.prototype.isPropertyOf() 先讲解hasOwnProperty()方法和使用.在讲解isPropertyOf()方法和使用 看懂这些至少要懂原型链 一.Object.prototype.hasOwnProperty() 概述 hasOwnProperty()方法用来判断某个对象是否含有指定的自身属性 语法 obj.hasOwnPropert

Android Studio获取SHA1值实例详解

Android Studio获取SHA1值实例详解 前言 使用百度地图的小伙伴们都会知道获取百度地图的密钥需要SHA1和包名,在Eclipse中,我们可以很方便的得知SHA1值,如下图: 但是在Android Studio中,该怎么获取SHA1的值呢?不要着急,马上呈上~ Android Studio获取SHA1值 强大的Android Studio为我们提供了Terminal这个工具,我们可以通过他进行相应命令从而获取所需内容. Java中提供了Keytool工具去让我们管理证书,那么接下来我

Android获取arrays.xml里的数组字段值实例详解

Android获取arrays.xml里的数组字段值实例详解 比如在arrays.xml里: <!--leo added for KYLIN-496--> <string-array name="reboot_item"> <item>Reboot</item> <item>Recovery</item> <item>BootLoader</item> </string-array&g