jquery Ajax请求示例,jquery Ajax基本请求方法示例
================================
©Copyright 蕃薯耀 2018年5月7日
https://www.cnblogs.com/fanshuyao/
- $.ajax({
- //async: false,//设置为同步,默认为异步(一般不需要)
- url : "xxx/xxx.html",
- type : "post",
- //dataType : "json",
- data : {
- "method" : "bb",
- "doc_no" : "aa"
- },
- complete : function(XMLHttpRequest, textStatus){
- //alert("textStatus="+textStatus);
- //closeLoading();//关闭进度条
- },
- error : function(XMLHttpRequest, textStatus, errorThrown){
- //closeLoading();//关闭进度条
- if("error" == textStatus){
- //$.messager.alert("系统提示", "服务器未响应,请稍候再试", "info");
- }else{
- //$.messager.alert("系统提示", "请求失败,textStatus="+textStatus, "info");
- }
- },
- success : function(data){
- if(data != null){
- if("success" == data.result){
- //TODO
- }else{
- // $.messager.alert("系统提示", "操作失败,请重试", "info");
- }
- //console.log("result = " + data.result + ",msg=" + data.msg);//IE不支持console输出
- }else{
- //$.messager.alert("系统提示","返回结果为空!","info");
- }
- }
- });
================================
©Copyright 蕃薯耀 2018年5月7日
https://www.cnblogs.com/fanshuyao/