gpt4 book ai didi

jquery - 我该如何改进这个 jQuery 语句?

转载 作者:行者123 更新时间:2023-12-01 06:23:00 26 4
gpt4 key购买 nike

有没有更好的写法:

$('.kog td:nth-child(8), .kog th:nth-child(8)').show();

我正在重复类选择器。

最佳答案

你可以使用

$('.kog').find('td,th').filter(':nth-child(8)').show();

您会发现它并没有更简洁,但它可能更好地表明您的意图。

关于jquery - 我该如何改进这个 jQuery 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15204301/

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