$.ajax({
url: '/check_in/?a=save',
type: "post",
data: {"attendees_id": attendees_id},
dataType: "json",
success: function (json) {
if('undefined'===typeof json.code){
toastr.error('数据传输错误,请重试。');
}else if (0 === json.code) {
boxAnimate(obj);
toastr.success("签到成功");
} else {
toastr.error(json.msg);
}
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
// alert(XMLHttpRequest.status);
// alert(XMLHttpRequest.readyState);
// alert(textStatus);
toastr.error("请检测网络,或稍后再试,错误代码 A10001", "网络故障");
}
});
Jquery Ajax
最新推荐文章于 2024-11-16 15:31:37 发布