jsonp 示例

前端之家收集整理的这篇文章主要介绍了jsonp 示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1. 从url拿json

2.处理response的json



<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<title>jsonp sample</title>
</head>
<body>
<div id="gists">
</div>
<script>
$(document).ready(function(){
                $.getJSON('https://api.github.com/gists?callback=?',function(response){
                    $.each(response.data,function(i,gist){
                        $('#gists').append('<li>' + gist.comments_url);
                    });
                });
            });</script>
</body>
</html>
原文链接:https://www.f2er.com/json/289822.html

猜你在找的Json相关文章