Jquery异步提交表单代码分享

  作者:bea

功能很实用代码也很简单,就不多废话了,直接奉上: $.ajax({ url:"mobileSurveyAction_addSurvey.action",//提交地址 data:$("#form1").serialize(),//将表单数据序列化 type:"POST", dataType:"json", success:function(result){ if (result.succ
功能很实用代码也很简单,就不多废话了,直接奉上:


$.ajax({
url:"mobileSurveyAction_addSurvey.action",//提交地址
data:$("#form1").serialize(),//将表单数据序列化
type:"POST",
dataType:"json",
success:function(result){
if (result.success == '100'){
$("#mySection").hide();
$(".footer").hide();
$("#alertMsg").show();

}else{
alert("失败!");
}
}
});


以上所述就是本文的全部内容了,希望能够对大家熟练掌握异步提交表单有所帮助。
请您花一点时间将文章分享给您的朋友或者留下评论。我们将会由衷感谢您的支持!


有用  |  无用

猜你喜欢