简体   繁体   English

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

[英]JQuery - $('#test ul > li').index(2).hide(); - possible?

Can I work with the index value so easily? 我可以轻松使用索引值吗? I think using the natural index values is better then using classes. 我认为使用自然索引值比使用类更好。 I want to use the .index in that way. 我想以这种方式使用.index。

Html 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>

Pseudo (Jquery) Javascript 伪(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');
});

I doesnt find a clue how to work this way with the .index value.. is it possible to work that easily with this method?? 我没有找到如何使用.index值以这种方式工作的线索..是否可以使用此方法轻松工作?

You can use eq : 你可以使用eq

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

It can also be a part of your selector: 它也可以是您的选择器的一部分:

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

If you want the third li in all ul s in #test , you can use nth-child (note it is 1-based): 如果你想在#test中的所有ul中使用第三个li ,你可以使用nth-child (注意它是基于1的):

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

Yes you can. 是的你可以。 You want .eq() however, instead of .index() : 你想要.eq() ,而不是.index()

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

Or as part of the selector: 或者作为选择器的一部分:

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

You're using it with an integer (number), but you can only use it with a selector or element. 您使用整数(数字),但只能将它与选择器或元素一起使用。 here 这里

Edit: 编辑:
You could write your own function like this: 您可以编写自己的函数,如下所示:

function indexValue(index)
{
    $(element).each(function(key, val) {
        if(key+1 == index) // + 1 because you started from 0
        {
            return val;
        }
    });
}
$(document).ready(function(){
  $("button#1").click(function(){
    $("p").hide();
  });
});
$(document).ready(function(){
  $("button#2").click(function(){
    $("p").show();
  });
});
<button id="1">Clica-me</button>
<button id="2">Volta-me</button>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM