0

我对此很陌生,所以有人可以提供一个非常基本的例子吗?

假设位于http://www.example.org/test.json的文件是这样的:

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

HTML是这样的:

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

我将如何从文件中提取“测试”并.append使用#whateverjQuery?

4

1 回答 1

4

尝试:

$.getJSON('http://www.example.org/test.json', function(data) {
  $('#whatever').append(data.test.example);
});
于 2012-04-18T07:24:40.043 回答