我不知道这是否可能,因为我对 JSON 和 jQuery 很陌生。这是我的两个脚本:
$.getJSON('http://shop.com/test/?format=json', function(data){
$.each(data.textpage, function(index, text){
$('<div></div>').html('' + text + '').appendTo('.verzendkosten');
});
});
和
$.getJSON('http://shop.com/vraag/?format=json', function(data){
$.each(data.textpage, function(index, text){
$('<div></div>').html('' + text + '').appendTo('.eigenschappen');
});
});
有没有可能将这两者结合起来?两个脚本都有效,但我很好奇如何或是否可以组合这些脚本。