我正在尝试为html中的IDs
标记指定唯一的input
,我正在使用AngularJS
所以基本上我使用ng-repeat
来生成input
}标签,但它在error
console
browserLink:37 Uncaught Error: Syntax error, unrecognized expression: input#checkbox{$index}
这是我的代码
<div class="chip" data-ng-repeat="item in DeletedKeyphrases track by $index">
<label></label>
<input type="checkbox" id="checkbox{{$index}}" data-ng-model="item.restorekeyselected" data-ng-click="storecheckedkeyphrase(item)"/><label for="checkbox{{$index}}" style="margin-right: 10px;"><span>✔</span></label>
我该怎么办?