java中子窗体向父窗体传值的问题。在线等!!!!!!!!!!!!!!!!!!!!!
A.jsp中我使用window.open("vaccine_detail.jsp","Sample","fullscreen=no,toolbar=no,location...
A.jsp中我使用 window
.open(
"vaccine_detail.jsp",
"Sample", "fullscreen=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=700,height=500,left=200,top=300",
"_blank");
}打开了一个窗体vaccine_detail.jsp 然后我想把从B.jsp中获得到的值赋值给A.JSP中的一个文本框,是框架结构。
objP = window.opener.document.getElementById("age ");
objP.value = "a";
但是这样JS错误objP = window.opener.document.getElementById("age ");
求高手帮忙。回答好加分! 展开
.open(
"vaccine_detail.jsp",
"Sample", "fullscreen=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=700,height=500,left=200,top=300",
"_blank");
}打开了一个窗体vaccine_detail.jsp 然后我想把从B.jsp中获得到的值赋值给A.JSP中的一个文本框,是框架结构。
objP = window.opener.document.getElementById("age ");
objP.value = "a";
但是这样JS错误objP = window.opener.document.getElementById("age ");
求高手帮忙。回答好加分! 展开
1个回答
展开全部
------父窗体--------
<input type="text" id="c" value=""><a href="javascript:op()">ff</a>
<script type="text/javascript">
function op(){
window.open("NewFile.html","_blank","height=320,width=400");
}
</script>
-------popup 窗体-----------
<script type="text/javascript">
function backValue(){
var tValue = window.document.getElementById("t").value;
window.opener.document.getElementById("c").value=tValue;
window.close();
}
</script>
</head>
<body>
<input type="text" id="t" value="">
<input type="button" value="submmit" onclick="backValue();">
</body>
<input type="text" id="c" value=""><a href="javascript:op()">ff</a>
<script type="text/javascript">
function op(){
window.open("NewFile.html","_blank","height=320,width=400");
}
</script>
-------popup 窗体-----------
<script type="text/javascript">
function backValue(){
var tValue = window.document.getElementById("t").value;
window.opener.document.getElementById("c").value=tValue;
window.close();
}
</script>
</head>
<body>
<input type="text" id="t" value="">
<input type="button" value="submmit" onclick="backValue();">
</body>
追问
谢谢了,我看了 我的方法没错。但是就是window.opener.document.getElementById("age ");
这个报错。也不知道报的什么错 JS一到这里就错了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询