现在,我正在处理我的问题:
ng-style="{ width: getTheValue() }"
但是为了避免在控制器端有这个功能,我更喜欢做这样的事情:
ng-style="{ width: myObject.value == 'ok' ? '100%' : '0%' }"
我如何做到这一点?谢谢!
作为@Yoshi说,从角1.1.5你可以使用它没有任何更改。
原文链接:https://www.f2er.com/angularjs/147198.html如果使用angular < 1.1.5,可以使用ng-class。
.largeWidth { width: 100%; } .smallWidth { width: 0%; } // [...] ng-class="{largeWidth: myVar == 'ok',smallWidth: myVar != 'ok'}"