提交表单就可以了啊,这个不用jQuery也很简单的写啊。这样就好了 function submitForm(){ var form=document.forms[0]; form.action=""; //这里写你的action名字就好了 form.submit(); }