jQuery让我在使用$.ajax()
的简写$.load()
时过滤内容,如下所示:
$('#foo').load('/path/to/foo.html #navigation li');
如何使用$ .ajax()实现相同的功能; ?
$.ajax({
url : 'nextpage.php',
/* get me some specific elements */
})
答案 0 :(得分:3)
这样的事情应该做你想做的事情:
$.ajax({
url : 'nextpage.php',
// …
success: function(result) {
$('#foo').html($(result).find('#navigation li').get(0));
}
})