我有以下作为父母和孩子
家长(仅发布脚本和表单标签)
<script type='text/javascript'>
window.onload = function () {
document.getElementById('NewTicket').onsubmit = sendToChild;
document.getElementById('sName').onclick = openChild;
}
function openChild() {
this.disabled = true;
xWinOpen('SecList.asp');
this.disabled = false;
}
function sendToChild() {
if (xChildWindow) {
var pta = document.getElementById('sName');
var cta = xChildWindow.document.getElementById('sName');
cta.value = pta.value;
xChildWindow.focus();
}
return false;
}
var xChildWindow = null;
function xWinOpen(sUrl) {
// Modify 'features' to suit your needs:
var features = "left=100,top=100,width=400,height=400,location=0,menubar=0," +
"resizable=1,scrollbars=1,status=0,toolbar=0";
if (xChildWindow && !xChildWindow.closed) { xChildWindow.location.href = sUrl; }
else { xChildWindow = window.open(sUrl, "myWinName", features); }
xChildWindow.focus();
return false;
}</script><form name="NewTicket" target="_self" method="POST" action=""><input name="sName" type="text" value="ABC" id="sName"></form>
Child 看起来像这样(再次只有脚本和 tbody 部分)。
<script type='text/javascript'>
function sendToParent(myStr)
{
alert(myStr)
var myStrSplit = myStr.split("/")
opener.document.NewTicket.sID.value = myStrSplit[0]
opener.document.NewTicket.sName.value = myStrSplit[1]
document.write(myStrSplit[0])
document.write(myStrSplit[1])
self.close();
}
</script>
<tbody>
<%Do While Not oRS.EOF
sVal = oRS("sID") & "/" & oRS("SecDet")%>
<tr>
<td><%=oRS("sID")%></td>
<td><a href="#" onclick="sendToParent(" & <%=sVal%> & ")"><%=oRS("SecurityName")%></a></td>
<td><%=oRS("BBG_Ticker")%></td>
<td><%=oRS("ISIN_Code")%></td>
<td><%=oRS("Country")%></td>
<td><%=oRS("Curr")%></td>
</tr>
<%oRS.MoveNext
Loop%>
</tbody>
在子 oRs("SecDet") 中是 5 个与“/”连接的字段,我在函数中进行拆分。
我想做什么?正如您在子表单中看到的那样,将有一个表格,我希望当用户单击任何行时,该行上的所有相应 6 个字段都应填充到父级的 6 个文本字段中。
我无法实现什么?似乎 sendToParent() 根本不起作用。
感谢你的帮助。