Jquery删除带有特定标签的链接以及该链接后的整个文本

发布于 2024-09-10 09:23:40 字数 434 浏览 11 评论 0原文

例如:

<a href="/" title="Go to homepage">Homepage</a> text after link;
<a href="/" title="About">About</a> text after link;
<a href="/" title="Contact Us">Contact Us</a> text after link;

没问题:我可以通过以下方式删除链接:

$("a:contains('Homepage')").remove();

我的问题:如何删除先前删除的链接后的文本:

链接后的文本

提前致谢。

For example:

<a href="/" title="Go to homepage">Homepage</a> text after link;
<a href="/" title="About">About</a> text after link;
<a href="/" title="Contact Us">Contact Us</a> text after link;

No problem: I can remove the link with:

$("a:contains('Homepage')").remove();

My question: How to remove the text after the link previously removed:

text after link

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小傻瓜 2024-09-17 09:23:40

您可以将该文本节点的值设置为空,如下所示:

$("a:contains('Homepage')")[0].nextSibling.nodeValue = "";

您可以在此处尝试。如果您不确定它是否存在,请添加 if 检查,如下所示:

var node = $("a:contains('Homepage')")[0];
if(node && node.nextSibling) node.nextSibling.nodeValue = "";

You can set that text node's value to empty, like this:

$("a:contains('Homepage')")[0].nextSibling.nodeValue = "";

You can try it here. If you're unsure if it's there, add an if check, like this:

var node = $("a:contains('Homepage')")[0];
if(node && node.nextSibling) node.nextSibling.nodeValue = "";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文