我现在用form+iframe提交两个form没问题,但两个form中一个是主表一个是从表就出现了问题,有时候提交到数据库成功,有时候不成功,不成功的原因是“未找到父项关键字”,哪位大神指导一下,
<form id="form1" name="form1" method="post" action="Test2SaveAction.action" target="tempiframe">
<form id="form2" name="form2" method="post" action="TestSaveAction.action" target="tempiframe2">
<iframe name="tempiframe" id="tempiframe" src="" style="display:none"></iframe>
<iframe name="tempiframe2" id="tempiframe2" src="" style="display:none"></iframe>
function saveData(){
try{
form1.submit();
form2.submit();
}catch(e){
}
}