gpt4 book ai didi

javascript - 使用ajax加载特定的div内容

转载 作者:行者123 更新时间:2023-11-30 16:31:53 24 4
gpt4 key购买 nike

我正在使用 $.ajax 加载页面内容。作为响应,我将整个 html 文档作为字符串获取,但我想通过使用 div 的 id 从响应中获取唯一特定的 div 内容。我无法更改响应,也无法使用 $.load 方法。提前致谢。

$.ajax({ 
url: ajax_url,
type: "GET",
dataType: "html"
}).done(function(data) {
}).fail(function(jqXHR, textStatus, errorThrown) {
});

最佳答案

在您的 .done() 方法中:

.done(function(data) { 
$('#target').html($(data).find('#specificDivId'))
})

关于javascript - 使用ajax加载特定的div内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33210563/

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