クラス コンテナ内にボタンのリストがあります。
<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();
しかし、それはうまくいきません。誰かがより良い提案をしていますか?