gpt4 book ai didi

javascript - 查找具有相同类的单击元素的索引

转载 作者:行者123 更新时间:2023-11-28 13:43:23 24 4
gpt4 key购买 nike

我的html代码是

<input type="button" class="buttonclose marleft fleft clrPric" value="X">
<input type="button" class="buttonclose marleft fleft clrPric" value="X">
<input type="button" class="buttonclose marleft fleft clrPric" value="X">
<input type="button" class="buttonclose marleft fleft clrPric" value="X">

我给了jquery像

 $('.clrPric').click(function(){
console.log($(this).index());
});

控制台中仅显示 7。此类中没有其他元素。我想获取点击按钮的编号。

提前致谢。

最佳答案

你需要这样做:

$('.clrPric').click(function () {
console.log($(this).index('.clrPric'));
});

FIDDLE

关于javascript - 查找具有相同类的单击元素的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16236124/

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