在HTML标记的属性中使用范围变量

时间:2015-11-04 11:09:11

标签: css angularjs scope

我想根据范围值

指定字体大小

我试过这样的事情

<td data-ng-repeat="dataColumn in data track by $index" data-ng-class="[dataColumn.properties.textalign, dataColumn.properties.width]" style="font-size:{{dataColumn.properties.textsize - 1}}+px;">

这在Chrome中工作得很好,但在Internet Explorer中却没有,

这有什么不对吗?

1 个答案:

答案 0 :(得分:3)

根据角度js https://docs.angularjs.org/guide/ie

  

为确保您的Angular应用程序适用于IE,请考虑:

     

使用ng-style代码而不是style="{{ someCss }}"。后者适用于Chrome和Firefox,但无法在Internet Explorer中使用&lt; = 11(撰写本文时的最新版本)。