人狠话很少直接上代码吧

  1. 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>
  1. 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 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐