这可能听起来像个愚蠢的问题。我在我的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吗?
很抱歉,如果这不是一个正确的问题。
答案 0 :(得分:0)
好的,我有这样的工作:
$(document).ready( function () {
var data = $.getJSON("http://test.com/api/?json=recentstories", function(data) {
console.log(data.posts);
});
});