ng-class css样式
<style>
.error{background-color:
red;}
.warning{background-color: yellow;}
</style>
<script>
app.controller("headerController",function($scope){
$scope.isError=false;
$scope.isWarning=false;
$scope.showError=function(){
$scope.messageText="this
is an
error";
$scope.isError=true;
$scope.isWarning=false;
}
$scope.showWarning=function(){
$scope.messageText="just
a
warning";
$scope.isError=false;
$scope.isWarning=true;
}
});
<script>
<body>
<div
ng-controller="headerController">
<div
ng-class=‘{error:isError,warning:isWarning}‘>{{messageText}}</div>
<button ng-click="showError()">error</button>
<button ng-click="showWarning()">warning</button>
</div>
</body>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。