求助,ajax如何将两个form表单同时提交给两
1个回答
展开全部
我只写个意思,表单如果提交,页面会强制跳转,你是无法实现多个表单的提交,除非你给表单指定了提交路径,如
<form name="form1" action="a.php" method="post" target='xxxx'></form>
<IFRAME id='xxxx'name='xxxx' src="" width="220" height="220"></IFRAME>
这是把表单提交重定向到iframe中,页面就不会强制跳转
$(document).ready(function (){
$(function (){
$('form').each(function (){
$(this).submit();
});
});
});
<form name="form1" action="a.php" method="post" target='xxxx'></form>
<IFRAME id='xxxx'name='xxxx' src="" width="220" height="220"></IFRAME>
这是把表单提交重定向到iframe中,页面就不会强制跳转
$(document).ready(function (){
$(function (){
$('form').each(function (){
$(this).submit();
});
});
});
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询