<form action="另外一个页面" target="iframename"></form>
<iframe width="0" height="0" name="iframename"></iframe>
JS 中 from.submit()

解决方案 »

  1.   

    两个方法:
    第一简单的:
    <form name="form1">...</form>
    <iframe name="hidden1" width="0" height="0" frameborder="0"></iframe>
    <iframe name="hidden2" width="0" height="0" frameborder="0"></iframe>
    <input type="button" value="提交" onclick="javascript:form1.action='page1.php';form1.target='hidden1';form1.submit();form1.action='page2.php';form1.target='hidden2';form1.submit();" />
    第二ajax自己研究吧