如何在提交form1时自动提交form2?
if( $_POST['submit'] == 'Submit')
{ im going to put my form2 here then automatically submit.
what code do i need?}
<form name=form1 action=# method=post>
<input type=submt name=submit value=Submit />
</form>
注意我的form2有不同的操作,这就是为什么我不能将form2的内容包含到我的form1中
当我点击某些内容时,也可以提交这两个表单。
答案 0 :(得分:1)
Link the onsubmit event到一个新函数“launchMyForms”。 在这些功能中,手动启动表单:
$('#myform1').submit();
$('#myform2').submit();