jquery ajax 使用记录

来源:互联网 发布:知润信息科技有限公司 编辑:程序博客网 时间:2024/05/15 09:09
$.ajax({
type : "post",//请求方式类型
url : "customerlistView",//请求地址

contentType: "application/json; charset=utf-8",请求数据格式以及编码

datatype:json,//返回数据格式

data:'{"start":'+(pageIndex-1)*length+',"length":'+length+'}',//请求参数json串
success : function(data) {//成功

},
error : function(XMLHttpRequest, textStatus, errorThrown) {//错误
setAlert('系统异常,请稍后再试');
return;
}
});
原创粉丝点击