Jquery 使用getJSON 获取json数据
1.先引用jq获取下载到本地 CDN地址:https://code.jquery.com/jquery-latest.js
{"code":200,"hitokoto":"\u6b32\u901f\u5219\u4e0d\u8fbe"} //json代码
//通过$.getJSON(url,function)获取json数据
let jqxhr = $.getJSON=('https://i.alapi.cn/hitokoto/?code=json',function(date){
//如果想获取json里面hitokoto的值,可以直接用 date.hitokoto;
document.write(date.hitokoto);
});
更多文档:https://www.jquery123.com/jQuery.getJSON/
本文由 Alone88 创作,采用 知识共享署名4.0 国际许可协议进行许可 本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名 最后编辑时间为: Feb 19, 2019 at 08:37 pm