使用ng-repeat AngularJS的动态HTML属性

时间:2013-07-30 14:20:14

标签: angularjs

我可以通过ng-repeat动态添加HTML属性吗?

<select>
    <option ng-repeat="thing in things" {{thing.ghosted||'disabled'}}>
        {{thing.name}}
    </option>
</select>

我在这里做错了什么?

1 个答案:

答案 0 :(得分:3)

对于这样的事情,使用指令是好的。

<select>
    <option ng-repeat="thing in things" ng-disabled="thing.ghosted">
        {{thing.name}}
    </option>
</select>