gpt4 book ai didi

javascript - JQuery - $ ('#test ul > li' ).index(2).hide(); - 可能的?

转载 作者:数据小太阳 更新时间:2023-10-29 04:03:20 25 4
gpt4 key购买 nike

我可以如此轻松地使用索引值吗?我认为使用自然索引值比使用类更好。我想以这种方式使用 .index。

HTML

<div id="test">
<ul>
<li>Im index 0</li>
<li>Im index 1</li>
<li>Im index 2</li>
<li>Im index 3</li>
</ul>
</div>

伪(Jquery)Javascript

$('#test ul > li').index(2).hide();

$('#test ul > li').index(1).click(function() {
alert('lulz you clicked the li with the index value of 1 bro');
});

我没有找到如何使用 .index 值以这种方式工作的线索。是否可以使用这种方法轻松工作?

最佳答案

您可以使用 eq :

$('#test ul > li').eq(2).hide();

它也可以是你的选择器的一部分:

$('#test ul > li:eq(2)').hide();

如果你想要#test中所有ul中的第三个li,你可以使用nth-child (注意它是基于 1 的):

$('#test ul > li:nth-child(3)').hide();

关于javascript - JQuery - $ ('#test ul > li' ).index(2).hide(); - 可能的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4591754/

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