gpt4 book ai didi

javascript - 如果链接没有 href,隐藏父 TR?

转载 作者:行者123 更新时间:2023-11-29 17:59:42 25 4
gpt4 key购买 nike

我目前有这个:

<table>
<tbody>
<tr>
<td>
<a href="http://www.google.com">Visit Website</a>
</td>
</tr>
<tr>
<td>
<a href="">Visit Website</a>
</td>
</tr>
<tr>
<td>
<a href="http://www.google.com">Visit Website</a>
</td>
</tr>
<tr>
<td>
<a href="">Visit Website</a>
</td>
</tr>
</tbody>
</table>

我需要一些 javascript 来:
如果<a>没有 href (href="") 然后隐藏包裹它的 TR。

如何使用 javascript 实现此目的?

最佳答案

您可以使用 attribute equals selector 用于获取带有 href=""a 标签,然后通过 closest() 获取 tr

$('a[href=""]').closest('tr').hide();
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<table>
<tbody>
<tr>
<td>
<a href="http://www.google.com">Visit Website</a>
</td>
</tr>
<tr>
<td>
<a href="">Visit Website</a>
</td>
</tr>
<tr>
<td>
<a href="http://www.google.com">Visit Website</a>
</td>
</tr>
<tr>
<td>
<a href="">Visit Website</a>
</td>
</tr>
</tbody>
</table>


或者您可以使用 :has() has() attribute equals selector .

$('tr:has(a[href=""])').hide();
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<table>
<tbody>
<tr>
<td>
<a href="http://www.google.com">Visit Website</a>
</td>
</tr>
<tr>
<td>
<a href="">Visit Website</a>
</td>
</tr>
<tr>
<td>
<a href="http://www.google.com">Visit Website</a>
</td>
</tr>
<tr>
<td>
<a href="">Visit Website</a>
</td>
</tr>
</tbody>
</table>

仅供引用:

如果你想选择没有href属性的a标签,那么你可以使用 :not() 选择器,例如:

$('a[href=""],a:not(a[href])').closest('tr').hide();

关于javascript - 如果链接没有 href,隐藏父 TR?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35883286/

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