gpt4 book ai didi

jquery - 在 jquery nth-child 公式中使用 "NOT"

转载 作者:行者123 更新时间:2023-12-01 07:46:39 25 4
gpt4 key购买 nike

我想删除第 3 个、第 4 个、第 6 个、第 7 个、第 9 个等TH。我想我可以做这样的事情:

  summaryHead.find('tr:first th:nth-child(!3n+2)').remove;

但是它不起作用。我也尝试过

summaryHead.find('tr:first th:nth-child(3n+3)').remove();
summaryHead.find('tr:first th:nth-child(3n+4)').remove();

这行为相当奇怪。有没有办法合并两个发现?

为了清楚起见,我想删除此图像中的所有绿色和红色字段,有时可能会有更多或更少的房间,但每个房间都会有 3 个字段,我想给出第一个房间的字段 colspan 3 并隐藏 2 个额外字段(此处为红色和绿色): enter image description here

最佳答案

我不确定是否有更好的方法,但你总是可以这样做

summaryHead.find('tr:first th').filter(':nth-child(3n+3), :nth-child(3n+4)').remove();

关于jquery - 在 jquery nth-child 公式中使用 "NOT",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36361510/

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