2013-10-19 70 views
0

這可能聽起來像一個愚蠢的問題。我在我的HTML頁面下面的「/體」聲明的在我的HTML頁面結束前補充說:將JSON數據加載到文檔就緒功能

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

我想加載到一個變量myPosts的DATAS:

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

還是應該在文檔就緒函數中使用$ .getJSON並從我的HTML頁面中刪除javascript?

對不起,如果這不是一個正確的問題。

+0

是,使用的getJSON – Moob

回答

0

好,我有它的工作是這樣的:

$(document).ready(function() { 
    var data = $.getJSON("http://test.com/api/?json=recentstories", function(data) { 
    console.log(data.posts); 
}); 
});