javascript 页面跳出一个页面window.open(),在新跳出的页面提交表单后,新页面关闭,servlet

返回到原来的页面。着急,在线等啊。callback()具体怎么写啊,谢谢了。... 返回到原来的页面
。着急,在线等啊。callback()具体怎么写啊,谢谢了。
展开
 我来答
口水猪宝
2013-07-09 · TA获得超过505个赞
知道小有建树答主
回答量:247
采纳率:0%
帮助的人:196万
展开全部
在父页面写个方法callback();
在打开的子页面,提交表单的时候用window.opener.callback可以调到父页面的方法
追问
callback具体怎么写,谢谢了。
追答

父页面ParentPage.html

<html>
<head>
<title>父页面</title>
<script type="text/javascript">
function callBack(param){
document.getElementById("test").value=param;//将子页面的值写到父页面

}
function openWin(){

window.open("ChildPage.html");
}
</script>
</head>
<body>
This is parent page!

<input type="button" value="dakai" onclick ="openWin()">
 <input type="text" id="test" /></br>
</body>
<html>

子页面ChildPage.html:
<html>
<head>
<title>子页面</title>
<script type='text/javascript'>
function submitValue(){
var value = document.getElementById("test").value;
window.opener.callBack(value);
window.close();
}
</script>
</head>
<body>
<form action="xxx" method="post">
This is Child page!Input Value here:
<input type="text" id="test" /></br>
 <input type="button" value="tijiao" onclick ="submitValue();"/>
</form>
</body>
<html>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式