角度设置动态样式在Chrome中不起作用

时间:2015-10-16 08:01:09

标签: html css angularjs

我希望div高度逐步增加20px,为什么下面的代码只能在Chrome中运行但在IE中不起作用?

<div ng-repeat="p in percentage">
   <div style="height: {{$index*20+5}}px"></div>
</div>

1 个答案:

答案 0 :(得分:0)

使用ng-style="height: {{$index*20+5}}px"

将其更改为

<div ng-repeat="p in percentage"> <div ng-style="height: {{$index*20+5}}px"></div>

请参阅set_index