使用表达式检查angularjs set复选框

时间:2015-09-01 12:53:27

标签: angularjs checkbox

我试图设置checked ="已检查"对于ng-repeat中的复选框

我目前的代码是:

<tr ng-repeat="current in listobjects" on-list-displayed>
    <input type="checkbox" name = "status" value="1" {{ current.status > 0 ? ' checked="checked"' : '' }}>
</tr>

但是

{{ current.status > 0 ? ' checked="checked" : "" }}

不会被angularjs解析并显示为文本

出了什么问题?

1 个答案:

答案 0 :(得分:0)

使用ng-checked进行此

<tr ng-repeat="current in listobjects" on-list-displayed>
    <input type="checkbox" name = "status" value="1" ng-checked="current.status > 0">
</tr>