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 に答える