我需要將一個特定元素的$ index值與ng-repeat一起添加到javascript函數中。 我的代碼示例:ng-repeat將索引值傳遞給一個函數
<tr ng-repeat="cells in CouponsList.CellPhones">
<td><button ng-click="doStuff($index+1)">{{cells.localVendorAddress}}</button></td>
現在我加入了幾個按鈕,當按下特定的按鈕,我需要把它的具體$指數的doStuff($指數)功能。 有什麼想法?
哼哼......什麼?!什麼不適用於你當前的代碼? – Blackhole
有什麼問題? – Shomz
問題是,當我按下按鈕它甚至不去函數,並且不要傳遞$索引。 – KBE