gpt4 book ai didi

JQuery 找到第 n 个子级并显示

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

使用 JQuery 我们如何找到当前被单击的元素的第 nth:child 并提醒该数字。

$('.bouncetabs a').click(function(){
alert($(this + ':nth-child'))
return false
});

显然这是行不通的。我们该怎么做?

最佳答案

我想你想要 .index method :

var selector = '.bouncetabs a';

$(selector).click(function(){
//just .index() may work too, depending on the html
alert($(this).index(selector));
return false;
});

关于JQuery 找到第 n 个子级并显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7860658/

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