分享
 
 
 

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

王朝学院·作者佚名  2009-02-17
窄屏简体版  字體: |||超大  

window.parent与window.opener的区别 javascript调用主窗口方法

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

举例:

a.html

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代码

<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代码

<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代码

<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代码

<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代码

<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");

在子窗口中当希望修改父窗口中的内容时,会弹出“某某”为空或不是对象的错误,而这里的“某某”就是你想修改的父窗口中的内容

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有