我有這個網站如何獲得輸入數組的點擊索引?
<input type="checkbox" name="mycheck[]" value="1" />
<input type="checkbox" name="mycheck[]" value="2" />
<input type="checkbox" name="mycheck[]" value="3" />
如果我有這樣的jQuery代碼:
$('input[name="mycheck"]').change(function() {
alert("which checkbox index I checked");
}
假設索引均爲0基於我應該有0,1,2如何獲得它提醒「1 「當我點擊中間的複選框?
'$(本)的.index()' – zerkms