0

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

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

});

我试过: $('.buttonContainer button.clicked').index();

但这行不通。有人有更好的建议吗?

4

1 回答 1

0

我刚刚找到了答案:

var index = $(this).index();
于 2012-07-31T23:46:50.127 回答