我在jsp下面有一个按钮代码块,它将把选中复选框的$index传递给控制器js中的javascript函数,该函数在$scope上定义。但当我试图在控制台上打印$index时,我得到了$index的未定义值。
jsp中的代码
<button type="button" class="btn btn-warning"
ng-disabled='validCheckbox'
**ng-click="addTemplate($index)">**
<i class="glyphicon glyphicon-plus"></i> Add Middle
</button>
js中的代码。
$scope.addTemplate = function(index){
console.log("index"+index);
1条答案
按热度按时间n53p2ov01#
你可以用
$index
只有在ng-repeat
在angular.js中。下面是一个如何使用的示例$index
. 假设你有StringArray=['a','b','c'];
```