Jquery删除带有特定标签的链接以及该链接后的整个文本
例如:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将该文本节点的值设置为空,如下所示:
您可以在此处尝试。如果您不确定它是否存在,请添加
if
检查,如下所示:You can set that text node's value to empty, like this:
You can try it here. If you're unsure if it's there, add an
if
check, like this: