我用 ajax 加载第二个页面,并希望将该页面中的特定 id 附加到当前页面上。
function Content() {
$("ul.tabs li a").click(function() {
$.ajax({
url: $(this).attr('href'),
success: function(response) {
$(response).find('ul#image-gallery-items').appendTo('ul#image-gallery-items');
}
});
return false;
})
}
我错过了什么?