1

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

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

我在这里做错了什么?

4

1 回答 1

3

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

<select>
    <option ng-repeat="thing in things" ng-disabled="thing.ghosted">
        {{thing.name}}
    </option>
</select>
于 2013-07-30T14:28:33.870 回答