2012-04-18 44 views
0

我對此很新,所以有人可以提供一個非常基本的例子嗎?在jQuery中的基本JSON解析

比方說,位於http://www.example.org/test.json文件是這樣的:

{ 
    "test":{ 
     "example":"Test", 
     "another":"Text" 
    }, 
    "blah":123 
} 

和HTML是這樣的:

<div id="whatever"></div> 

我將如何使用提取「測試」從文件和.append#whatever jQuery的?

+3

jQuery的文檔是相當合理的。哪個過程給你帶來問題? – Quentin 2012-04-18 07:23:39

+0

我建議你在這裏查看關於getJSON for jQuery的文檔:http://api.jquery.com/jQuery.getJSON/ – 2012-04-18 07:24:46

回答

4

嘗試用:

$.getJSON('http://www.example.org/test.json', function(data) { 
    $('#whatever').append(data.test.example); 
});