IE父子窗口的参数及返回值的传递

父窗口:main.html
//------------------------------------------
<html>
<head>
<script language="javascript">
function getValue(){
var sta="dialogWidth:400px;dialogHeight:200px;status:no;help:no;center:yes";
var para="this is the parameter";
var value="1";
value=window.showModalDialog("getValue.html",para,sta);
alert(value);
}
</script>
</head>
<body>
<center>
<a href="#" onclick="getValue()">从子窗体获得输入值</a>
</center>
</body>
</html>


子窗口:getValue.html
//--------------------------------------
<html>
<head>
<script language="javascript">
function init(){
var para=window.dialogArguments;
document.getElementById("para").innerHTML=para;
}
function getValue(){
window.returnValue="this is the return value";
window.close();
}
</script>
</head>
<body onload="init()">
<center>
<div id="para"></div>
<a href="#" onclick="getValue()">提交返回值</a>
</center>
</body>
</html>


注意:子窗口的getValue()函数名不能用“returnValue”,这样会与windows.returnValue这个系统变量相冲突。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值