我有一个类容器中的按钮列表。
<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();
但这行不通。有人有更好的建议吗?