单击时,我试图通过 URL 从 JSON 获取数据到<div>
.
我的 JSON 返回一个 id 和我试图将内容放入 div 的内容#west-container
。
有人可以告诉我我做错了什么吗?
我在 url 找到的 JSON =[{"id":"2","title":"Generic Overview","content":"This is content here"}]
$('#jqxTree').bind('select', function (event) {
var loadPages = jQuery.parseJSON(
jQuery.ajax({
url: 'university/article/3',
async: false,
dataType: 'json'
}).responseText
);
for(i=0; i < loadPages.length ; i++){
var current = loadPages;
$("#west-container").load(current.content);
}
});