我对此很新,所以有人能提供一个非常基本的例子吗?
假设位于http://www.example.org/test.json的文件是:
{
"test":{
"example":"Test",
"another":"Text"
},
"blah":123
}
,HTML就是这样:
<div id="whatever"></div>
如何从文件中提取“Test”,并使用jQuery在.append
中#whatever
提取它?
答案 0 :(得分:4)
尝试:
$.getJSON('http://www.example.org/test.json', function(data) {
$('#whatever').append(data.test.example);
});