gpt4 book ai didi

jquery - 如何仅将 nth-child 或 nth-of-type 应用于可见元素?

转载 作者:行者123 更新时间:2023-11-28 11:55:15 25 4
gpt4 key购买 nike

demo

这是标记:

<ul>
<li>one</li>
<li>two</li>
<li>three</li>
<li style="display: none;">four</li>
<li style="display: none;">five</li>
<li style="display: none;">six</li>
</ul>
<div>next example</div>
<ul>
<li style="display: none;">one</li>
<li style="display: none;">two</li>
<li>three</li>
<li>four</li>
<li>five</li>
<li style="display: none;">six</li>
</ul>

并应用此 css:

li:nth-child(3){
border-bottom: 1px solid black;
}

结果是这样的:

one
two
three
-----------------

three
-----------------
four
five

我想要这样的结果:

one
two
three
-------------

three
four
five
----------

那么,我怎样才能将第 n 个子元素或其他东西仅应用于可见元素?

最佳答案

我试过了;

li:not([style]):nth-child(3){
border-bottom: 1px solid black;
}

虽然好像不行,可惜。您不能仅使用 CSS 对当前标记执行此操作。

style 属性是如何设置的?您可以设置一个类及其样式并使用它来选择它们而不是 li 或使用 javascript 来做边框。

关于jquery - 如何仅将 nth-child 或 nth-of-type 应用于可见元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20137104/

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