JSON数据未加载

时间:2013-09-06 14:14:17

标签: javascript html json

我正在尝试将API中的一些数据加载到html中。但它没有返回任何东西。我的代码如下。我用开发人员工具检查了它但没有错误。请帮忙。

<html>
<head>
    <style type="text/css">

    </style>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
    <script type="text/javascript">
    $(document).ready(function() {

            $.getJSON('http://uapi.staging.simplestream.com//tvplayer/channels/programmes/2013-09-01/referer/tvplayer?format=json',function(data){
                $('#content').empty();
                $.each(data, function(entryIndex, entry){
                    var html = '<div class="data">';                      
                    html += '<div class="title">' + entry['title'] + '</h3>';
                    html += '<div class="shortDesc">' + entry['synopsis'] + '</div>';                   
                    html += '<div class="duration">' + entry['duration'] + '</div>';                                        
                    $('#content').append(html);
                });                        
            });
            return false;

    });
    </script>
</head>
<body>

<div id="content" style="width:500px; height:800px;">
<div class="ellipsis title"></div>
<div class="ellipsis shortDesc"></div>
<div class="duration"></div>
</div>
</body>
</html>

0 个答案:

没有答案