gpt4 book ai didi

jquery - 如何使用 JQuery ajax() 加载 HTML 片段?

转载 作者:行者123 更新时间:2023-12-03 22:33:33 27 4
gpt4 key购买 nike

请有人告诉我如何使用 JQuery ajax() 方法从另一个页面上的 div 中提取内容?

anotherpage.html

<html>
<head></head>
<body>
<div id="content">I want to extract this element</div>
</body>
</html>

我已经尝试过:

$.ajax({
url: "anotherpage.html #content",
dataType: "html"
}).done(function(data){
$("#results").html(data);
})

但它返回完整的页面,而不仅仅是#content 片段。

注意:我知道如何使用 load() 速记法来实现它,但我想知道如何使用 ajax() 方法来实现它。

提前致谢。

最佳答案

试试这个

 $('#results').load("anotherpage.html #content");

另请访问此处的“加载页面片段”jquery load api .

关于jquery - 如何使用 JQuery ajax() 加载 HTML 片段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16885538/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com