gpt4 book ai didi

javascript - 对于类 'y' 的每个表,如果表不包含类 'x' 的后代,则选择 th 和 td 后代

转载 作者:行者123 更新时间:2023-11-29 18:26:21 24 4
gpt4 key购买 nike

对于类“y”的每个表,如果表不包含类“x”的后代,则选择降序的第 th 和 td 元素,然后删除它们的宽度属性。

这是我目前所拥有的:

$(document).ready(function(){ 
$('table.y').has(':not(.x)').find('td').removeAttr('width')
$('table.y').has(':not(.x)').find('th').removeAttr('width')
});

最佳答案

你可以使用not方法和:has选择器,为了排除元素,首先你应该使用not方法或:not 选择器。

$(document).ready(function(){ 
$('table.y').not(':has(.x)').find('td, th').removeAttr('width')
});

关于javascript - 对于类 'y' 的每个表,如果表不包含类 'x' 的后代,则选择 th 和 td 后代,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12693718/

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