我有这样的html
<div ng-controller="newcontroller">
<div class="firstdiv" ng-show="show">welcome</div>
<button ng-click="newfunction">click</button>
</div>
像这样的js文件
app.controller('newcontroller',function($scope)
{
$scope.show=false
$scope.newfunction=function()
{
$scope.show=true;
}
});
我有这样的css
.firstdiv { 背景:绿色;}
.newclass {背景:黑色;}
在这里,当我单击单击按钮时,我正在这样做,我正在显示欢迎消息。我想为该div动态更改css。所以我有另一个名为 newclass 的 css 类名称。所以当我单击单击按钮时,我必须应用该新类来更改 css ....如何做到这一点?