我在类容器中有一个按钮列表。
<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();
但那不起作用。有人有更好的建议吗?
答案 0 :(得分:0)
我刚刚找到答案:
var index = $(this).index();