gpt4 book ai didi

jquery - 如何从具有匹配属性/值的元素中删除类?

转载 作者:行者123 更新时间:2023-12-01 06:41:27 25 4
gpt4 key购买 nike

使用 jQuery,如何删除类 header来自所有<th>具有属性 nofilter="True" 的元素?

<th class="header" nofilter="True" scope="col" align="left">City</th>

结果应该是:

<th nofilter="True" scope="col" align="left">City</th>

最佳答案

使用Attribute Equals Selector :

$("th[nofilter='True']").removeClass("header");

关于jquery - 如何从具有匹配属性/值的元素中删除类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3300664/

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