使用下面的代碼我試圖從函數綁定的函數裏面訪問索引 play [index] .click()。從函數內部獲取索引
我一直在嘗試幾件事情,但無法弄清楚。
jQuery(document).ready(function($) {
$(".player").each(function(index) {
if (typeof play === 'undefined') {
play = [];
}
play[index] = $(this).children('.button.play');
play[index].on('click', function(e, index) {
e.preventDefault();
// index where are you?
console.log(index);
});
});
});
編輯:
HTML代碼將是這樣的:
<div class="player">
<a class="button play" href="" title=""></a>
</div>
從'function(e,index)'=>'function(e)' –
刪除'index'哇!非常感謝! –
我把它放在答案,享受 –