Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 ng-style 动态更改 HTML 元素的颜色。
<i class="fa fa-circle" ng-style='{color: "{{getColor()}}"}'></i>
其中 getColor() 函数返回要更改的颜色,它可以根据用例返回不同的颜色。第一次一切正常,但是当 getColor() 稍后返回不同的颜色时,它不会更新 HTML 元素的颜色。
试试这个:
<i class="fa fa-circle" ng-style="{color: getColor()}"></i>