url: "#",
type: "POST",//提交方式,也可以是get
data: $("#Form").serialize(),//传输的表单数据
dataType: "json",
cache: false,
beforeSend: function() {
dosomething; //Ajax发送前执行的操作,例如:
// 禁用按钮防止重复提交
$("#submit").prop("disabled",true);
},
success: function(data) {
console.log(data);
},
complete: function() {
$("#submit").prop("disabled",false);
}
});
原文链接:https://www.f2er.com/ajax/161647.html