gpt4 book ai didi

jquery - 使用 jQuery 隐藏所有具有特定内容的

转载 作者:太空宇宙 更新时间:2023-11-03 21:21:37 25 4
gpt4 key购买 nike

寻找有关如何隐藏所有 <td> 的建议在与以下示例内容匹配的特定表格中(6 个空格):

<td id="" class="">      </td>

Firebug 显示为

<td class="" id="">

</td>

最佳答案

如果您想定位实际的 <td>基于其 id 的元素和 class属性,你可以使用 attribute equals selector处理:

// Hide any <td> elements that have an empty ID and class attributes
$('td[id=""][class=""]').hide();

同样,如果您想根据内容定位这些元素,则可以使用 contains() 选择器:

// Hide any elements that contain six consecutive spaces
$('td:contains(" ")').hide();

但是,如果您想定位包含完全该内容的元素,您可能需要通过 filter() 来处理它。打电话:

// Hide any <td> elements that have content that is exactly six spaces
$('td').filter(function(){ $(this).text() == ' '; }).hide();

关于jquery - 使用 jQuery 隐藏所有具有特定内容的 <td>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36749486/

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