什么是Ajax
- A - asynhronous ja - javascript x - xml(异步js+xml)
Ajax类似于python的request的第三方库,专门提供js中的网络请求功能(http请求) - 使用方法
$.get(url,data ,fn, type) - 获取url接口提供的数据(get的接口)
url - 请求地址(字符串)
data - 参数(对象)
fn - 回调函数
type - 返回数据类型(字符串, 例如 json,html)
http://api.tianapi.com/meinv/?key=772a81a51ae5c780251b1f98ea431b84&num=10
.ajax({url:请求地址, type:'get'/'post', async:是否异步, success:回调函数, data:参数对象})