标签:
使用ng-style标记来替代style="{{ someCss }}"。
ng-style 属性值必须是对象,表达式返回的也是对象。
写法1:
<div class=‘progress-bar‘ style="{‘width‘:‘{{percent}}%‘}"></div>
controller 中:
$scope.percent = 40;
写法2:
<div class=‘progress-bar‘ style="barWidth"></div>
controller 中:
$scope.barWidth = {
‘width‘ : ‘40%‘
};
关于IE10 及以下版本使用angularjs style={{expression}}不显示的兼容性问题
标签:
原文地址:http://www.cnblogs.com/sandy-happyhour/p/5809977.html