判断语句:
ng-switch on
ng-switch-when
ng-switch-when
ng-if=”person.sex==1“
<ul> <li ng-repeat=”person in persons”> <span ng-switch on=”person.sex”> <span ng-switch-when=”1〃>you are a boy</span> <span ng-switch-when=”2〃>you are a girl</span> </span> <div ng-switch on="person.Clickable"> <div ng-switch-when="1" class="item_wrap"> <a href="#/MettingDetail"> {{person.Name}} </a> </div> <div ng-switch-when="0" class="item_wrap"> <a>{{person.Name}}</a> </div> </div> <span ng-if=”person.sex==1〃>you may be a father</span> <span ng-show=”person.sex==2〃>you may be a mother</span> <span> please input your baby’s name:<input type=”text” ng-disabled=”!person.hasBaby”/> </span> </li> </ul>
原文地址:http://www.cnblogs.com/yujian-bcq/p/3860851.html