ng-class
Posted Edison~~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ng-class相关的知识,希望对你有一定的参考价值。
//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的主要内容,如果未能解决你的问题,请参考以下文章