gpt4 book ai didi

jquery - 使用 JQuery 提取 HTML

转载 作者:太空宇宙 更新时间:2023-11-04 14:24:41 24 4
gpt4 key购买 nike

我的文档中有以下结构:

<div id="clientList>
<a href=whatever.php" att="something">Text</a>
<a href=whatever.php" att="something">Text</a>
</div>

假设我想获取 div 之间的所有链接,我该怎么做?

我尝试了以下方法:

$('#clientList').children("a").each(function() {
var x = $(this).html();
});

但是我没有得到完整的链接,我得到的只是链接之间的“文本”部分。如何获取每个链接的完整 HTML 字符串,包括 href 和其他属性?

最佳答案

我相信这是对 JQuery: Select html of an element, inclusive? 的欺骗

无论如何,正如那里提到的,您应该能够编写一个 outerHTML 插件:

jQuery.fn.outerHTML = function() { 
return $('<a>').append(this.eq(0).clone()).html();
};

然后将其用作

$(this).outerHTML();

关于jquery - 使用 JQuery 提取 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2169762/

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