jQuery解析json数据
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
人狠话很少直接上代码吧
- JavaScript代码
<script type="text/javascript" src="https://cdn.staticfile.org/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.ajax({
url : "https://api.apiopen.top/likePoetry?name=李白",//某大佬提供的api希望一直有效
dataType : "json",//数据格式
type : "post",//请求方式
async : false,//是否异步请求
success : function(data) { //如果请求成功,返回数据。
$("#info").html("")//清空info内容
$.each(data.result,function(i,item){
$("#info").append(
"<div>"+"诗名:"+item.title+"</div>"+
"<div>"+"内容:"+item.content+"</div>"+
"<div>"+"作者:"+item.authors+"</div>"+"</br>"
);
});
}
})
})
</script>
- HTML代码
<div id="info"></div>
ps:本人使用的webstorm,如有跨域问题,请自行百度搜索jsonp。生活不只有coding,还有诗和远方!!!!
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)