【发布时间】:2018-07-23 13:38:12
【问题描述】:
如何传递类:使用 ng-class 后,如何向现有的 css 类添加属性 我有css作为
<style>
customcss:after{
border-top: 7px solid green;
}
</style>
我想使用 ng-class 或 ng-style 动态改变颜色
我用过
<html>
<div ng-class="{customcss: true}" ng-style="topcolor('yellow')"></div>
</html>
<script>
$scope.topcolor = function (color) {
return '7px solid ' + color;
}
</script>
enter code here
就像上面我用过的一样,但是颜色没有动态变化
请帮我解决这个问题。
【问题讨论】: