1. 引入Jquery
<script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
2. 快捷使用
$.get(URL,callback)
$.post(URL,data,callback)
3. Ajax 使用
$.ajax({
url: "url",
type: "POST",
dataType: "json",
data:{},
success: function (data) {
console.log(data)
}
})
【参数】
参考文档:https://www.html.cn/jqapi-1.9/jQuery.ajax/
属性名 | 类型 | 备注 |
---|
url | String | 请求地址 | type/method | String | 请求方式 | dataType | String | 预期服务端返回的参数格式 | data | Object 或 String 或 Array | 发送到服务器的数据 | success | Function | 请求成功后的回调函数 | error | Function | 请求失败时调用此函数 | headers | Object | 请求头中的设置值 | async | Boolean | 默认设置下,所有请求均为异步请求(默认true) | jsonp | String 或 Boolean | jsonp请求 | jsonpCallback | Function | 为jsonp请求指定一个回调函数名 | contentType | Boolean 或 String | 数据发送到服务器内容类型 |
【Content-Type 属性】
值 |
---|
application/json | application/x-www-form-urlencoded | multipart/form-data | application/octet-stream |
|