我尝试使用ng-style
,因为我需要一些动态颜色来处理IE11。
<tr ng-style="{'background-color':'{{section.Color}}'}">
我有一个Angularjs
模块,允许我动态更改颜色:
<button type="button" colorpicker type="button" colorpicker-position="top" ng-model="section.Color" >
change color
</button>
它有些不起作用。但如果它是正常的样式,它将更新颜色。我该如何解决这个问题?
答案 0 :(得分:1)
试试这个
<tr ng-style="{'background-color':section.Color}">
{{}}
section.Color
无需ng-style
答案 1 :(得分:0)
这样
<tr ng-style="{'background-color':{{section.Color}} }">