导航: 好喜爱学习网 >> 网站制作 >> JavaScript >> 用javascript实现父窗体的更新
相关文章
最新文章
文章内容
用javascript实现父窗体的更新
作者:未知 来源:网络收集 录入:管理员

Response.Write("<script language='javascript'>window.opener.location=window.opener.location.href;</script>")


第一种方案是:
file a.htm

function OpenDialog(url,param)
{
return window.open(url,param, "DialogWidth:450px;DialogHeight:450px;help:no;status:no");
}


file b.htm
<script language="javascript">
function js_do(val)
{
self.opener.document.all.filename.value=val
}
</script>

第二种方案是:
file A.htm
<html>
<script language="javascript">
function OpenDialog(url,param)
{
       return window.showModalDialog(url,param, "DialogWidth:450px;DialogHeight:450px;help:no;status:no");
}

function js_getData(url)
{
return OpenDialog("b.htm","");
}

</script>
<body>
<form name="myFrm">
<input type="text" name="filename" onclick="this.value=js_getData()">
</form>
</body>
</html>

file b.htm

<html>
<script language="javascript">
function js_do(val)
{
window.returnValue=val;
window.close();
}
</script>
<body>
<form name="myFrm">
<input type="text" name="filename">
<input type="text" name="btnDo" onclick="js_do(this.form.filename.value)">
</form>
</body>
</html>

Response.Write("<script language='javascript'>window.opener.document.all.txt1.value="+theValue+";</script>");

E-MAIL:309076721@163.com
本站为非营利性质个人网站,建站只为个人爱好与学习,内容大多为电脑技术教程;
网站内容来源于互联网收集整理,禁止用于非法途径,如发现本网站上有侵权的文章请联系我们,我们会尽快删除;
本站不对站点内容准确性、完整性和真实性作任何承诺,由此产生的后果本站不承担任何责任,对以上引起的一切法律纠纷本站无权利承担。