gpt4 book ai didi

jquery - 从 html 中删除特定链接?

转载 作者:行者123 更新时间:2023-12-01 08:17:35 25 4
gpt4 key购买 nike

我的 RSS 提要生成的链接由于某种原因无处可去。它们并不重要,所以我想也许我可以删除这些链接。

有什么方法可以完全删除“a”标签之类的吗?使其成为纯文本的最佳方法是什么?

所有链接都以“http://output”开头。谢谢。

最佳答案

您可以使用attribute starts with selector

  $('a[href^="http://output"]').remove();

这会删除所有 <a>具有以 http://output 开头的属性 href 的标签

如果您需要将其替换为普通文本,您可以这样做

$('a[href^="http://output"]').each(function(){
var txt = $(this).text();
var span = $('<span/>', { text : txt});
$(this).replaceWith(span);
});

关于jquery - 从 html 中删除特定链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9483652/

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