クリックすると、JSON から URL 経由でデータを取得しようとしています<div>
。
私の JSON は、コンテンツを div に取得しようとしている単一の ID とコンテンツを返します#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);
}
});