jQuery按钮位置索引

时间:2012-07-31 19:56:14

标签: jquery

我在类容器中有一个按钮列表。

<div class="buttonContainer">
    <button id="ONE">ONE</button>
    <button id="TWO">TWO</button>
    <button id="THREE">THREE</button>
</div>

我想要获得的是我点击的按钮的数字位置:

$('.buttonContainer button').click(function (e) {
    var id = this.id;

    // id contains the name of the id of the button clicked.

});

我试过了:     $(&#39; .buttonContainer button.clicked&#39;)。index();

但那不起作用。有人有更好的建议吗?

1 个答案:

答案 0 :(得分:0)

我刚刚找到答案:

var index = $(this).index();