AngularJS使⽤ng-class动态增减class样式的⽅法⽰例本⽂实例讲述了AngularJS使⽤ng-class动态增减class样式的⽅法。分享给⼤家供⼤家参考,具体如下:
使⽤ng-class可以实现动态地增减样式:
<!DOCTYPE html>
<html ng-app="formExample">
<head>
<meta charset="UTF-8">
<title></title>
<script src="../js/angular.js"></script>
<script>
.controller('FormController', ['$scope', function($scope)
{
}]);
</script>
<style>
.strike {
text-decoration: line-through;
}
.bold {
font-weight: bold;
}
.red {
color: red;
}
</style>
</head>
<body>
<div>
<p ng-class="{strike: deleted, bold: important, red: error}">通过映射的⽅式</p>
<input type="checkbox" ng-model="deleted">添加strike样式<br>
<input type="checkbox" ng-model="important">添加bold样式<br>
<input type="checkbox" ng-model="error">添加错误样式angular和angularjs
<hr>
<p ng-class="style">使⽤字符串的⽅式</p>
<input type="text" ng-model="style" placeholder="输⼊ bold、 strike 或 red">
<hr>
<p ng-class="[style1, style2, style3]">使⽤数组的⽅式</p>
<input ng-model="style1" placeholder="输⼊: bold, strike 或 red"><br>
<input ng-model="style2" placeholder="输⼊: bold, strike 或 red"><br>
<input ng-model="style3" placeholder="输⼊: bold, strike 或 red"><br>
<hr/>
</div>
</body>
</html>
更多关于AngularJS相关内容感兴趣的读者可查看本站专题:《》、《》及《》
希望本⽂所述对⼤家AngularJS程序设计有所帮助。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论