我使用Ajax从另一个页面中获取信息,但不显示此页面。这是代码
$.ajax({
url: 'another-page.html',
dataType: 'html',
success: function (data) {
//how to get the html title contained in data?
//how to get an element with ID contained in data?
}
});
我觉得这应该在某个地方得到解答,但我找不到它。对不起,如果这是重复的。如果SO已经有答案,我会删除它。
非常感谢。
答案 0 :(得分:2)
如果我理解你的问题需要解析远程文档或选择一部分。你可以使用加载方法选择该文档中的某个Div,title
$( "#targetDiv" ).load( "remotePage.html #title" );
查看load()