在这里总结两种方法,第一种是将form序列化之后作为参数提交,第二种是调用ajaxSubmit方法提交。直接贴代码了:
form表单的写法:
<form id="testForm" name="testForm" method="post" action="testForm/addTestForm.do">
<input class="ipt w400" id="" name="name" type="text" />
</form>
第一种提交的方法:
$.ajax({
cache: true,
type: "POST",
url:'testForm/addTestForm.do',
data:$('#testForm').serialize(),// 你的formid
async: false,
error: function(request) {
alert("Connection error");
},
success: function(data) {
alert("成功了");
}
});
第二种提交的方法:
$('#testForm').ajaxSubmit(function(result){ var resJson = $.parseJSON(result); if(resJson.success){ alert(resJson.msg); }else{ alert(resJson.msg); } });
原文链接:https://www.f2er.com/ajax/163636.html