办法1.同一个页面中建立两个表单 各自提交: 办法2:如果非要只有一个表单的话,通过js提交: function submitYouFrom(path){ $('form1').action=path; $('form1').submit(); }