angularjs怎样判断语句
展开全部
用三目运算符。
使用ng-switch结构。
使用ng-if。
angularjs中的判断语句说明。
由于angularjs不支持if-else结构,所以判断的写法如下:
用三目运算符:
<span>{{isLarge ? 'video.large' : 'video.small'}}</span>
使用ng-switch结构:
<div ng-switch on="video">
<div ng-switch-when="video.large">
</div>
<div ng-switch-default>
<!-- code to render the regular video block -->
</div>
</div>使用ng-if(angularjs 1.1.5以后版本有效):
<div ng-if="video == video.large">
<!-- code to render a large video block-->
</div>
<div ng-if="video != video.large">
<!-- code to render the regular video block -->
</div>
展开全部
and
<span ng-if="checked && checked2">
I'm removed when the checkbox is unchecked.
</span>
or
<span ng-if="checked || checked2">
I'm removed when the checkbox is unchecked.
</span>
<span ng-if="checked && checked2">
I'm removed when the checkbox is unchecked.
</span>
or
<span ng-if="checked || checked2">
I'm removed when the checkbox is unchecked.
</span>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2016-07-06 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注
展开全部
angularjs中的判断语句说明:
由于angularjs不支持if-else结构,所以判断的写法如下:
1、用三目运算符:
<span>{{isLarge ? 'video.large' : 'video.small'}}</span>
2、使用ng-switch结构
<div ng-switch on="video">
<div ng-switch-when="video.large">
</div>
<div ng-switch-default>
<!-- code to render the regular video block -->
</div>
</div>
3、使用ng-if(angularjs 1.1.5以后版本有效):
<div ng-if="video == video.large">
<!-- code to render a large video block-->
</div>
<div ng-if="video != video.large">
<!-- code to render the regular video block -->
</div>
由于angularjs不支持if-else结构,所以判断的写法如下:
1、用三目运算符:
<span>{{isLarge ? 'video.large' : 'video.small'}}</span>
2、使用ng-switch结构
<div ng-switch on="video">
<div ng-switch-when="video.large">
</div>
<div ng-switch-default>
<!-- code to render the regular video block -->
</div>
</div>
3、使用ng-if(angularjs 1.1.5以后版本有效):
<div ng-if="video == video.large">
<!-- code to render a large video block-->
</div>
<div ng-if="video != video.large">
<!-- code to render the regular video block -->
</div>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询