angularJS 判断

判断语句:

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>

posted on 2014-07-22 16:30  yujian_bcq  阅读(724)  评论(0编辑  收藏  举报

导航