标签:sts json edit nbsp 返回 默认 function pre 定义
$.ajax({ async: false, //采用异步的方式提交,不添加默认是异步,布尔值为 true type : ‘POST‘, url : ‘https://i-beta.cnblogs.com/posts/edit‘, data : { //这里是请求提交携带的参数 如果有的话 //格式如 name:xxx,age:yyy 这里的xxx和yyy可以是具体数,也可以通过var来定义,位置写在第三行就行 }, dataType : ‘json‘, success:function(data){ conole.log("请求成功的数据",data) },error:function(error){ console.log("请求失败返回的信息",error) } });
主要更改同异步还是 async
标签:sts json edit nbsp 返回 默认 function pre 定义
原文地址:https://www.cnblogs.com/bing23443414/p/12090251.html