0

这听起来像是一个愚蠢的问题。我在我的 HTML 页面中在我的 HTML 页面中的“/body”语句结束之前添加了以下内容:

<script src="http://test.com/api/?json=recentstories&callback=myPosts" type="text/javascript"></script>

我希望将 myPosts 中的数据加载到变量中:

$(document).ready( function () {
var  loadeddata = //load the data here
}

或者我应该在文档就绪函数中使用 $.getJSON 并从我的 HTML 页面中删除 javascript?

抱歉,如果这不是一个正确的问题。

4

1 回答 1

0

好的,我让它像这样工作:

    $(document).ready( function () {
    var data = $.getJSON("http://test.com/api/?json=recentstories", function(data) {
    console.log(data.posts);
});
});
于 2013-10-19T18:54:09.663 回答