首页 > 其他 > 详细

ng-class

时间:2017-04-12 18:23:01      阅读:144      评论:0      收藏:0      [点我收藏+]
//json
<p ng-class="{red:a,text:b,dec:c}">Test Demo</p>
<input type="checkbox" ng-model="a">红 <br>
<input type="checkbox" ng-model="b">粗 <br>
<input type="checkbox" ng-model="c">中划线 <hr>
//
<p ng-class=style>Test Demo</p>
<input type="text" ng-model="style"><hr>
//数组
<p ng-class="[style1,style2,style3]">Test Demo</p>
<input ng-model="style1" placeholder="red text or dec" aria-label="red text or dec"> <br>
<input ng-model="style2" placeholder="red text or dec" aria-label="red text or dec">粗 <br>
<input ng-model="style3" placeholder="red text or dec" aria-label="red text or dec">中划线 <hr>
//json和数组
<p ng-class="[style4,{ora:d}]">Test Demo</p>
<input ng-model="style4" placeholder="text or dec" aria-label="text or dec"> <br>
<input type="checkbox" ng-model="d">

ng-class

原文:http://www.cnblogs.com/qiudongjie/p/6700706.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!