<pre name="code" class="javascript"> $.ajax( { type: "POST",url:$("#answerUrl").val(),data:$('#formId').serialize(),//formId-----你的表单id async: false,success:function(result){} });这样就可以把form表单里头的所有数据都传到后台去了、方便好用。 原文链接:https://www.f2er.com/ajax/164809.html