ng-show与ng-if区别

Posted Amy-WebFrontEnd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ng-show与ng-if区别相关的知识,希望对你有一定的参考价值。

<p>ng-show and ng-if : </p>
<div ng-show="isShow">ng-show是否显示</div>
<div ng-if="isShow">ng-if是否显示</div>
$scope.isShow = false;

从结果可以看出使用ng-if时DOM会被移除,所以使用显示隐藏时要使用ng-show ng-hide

以上是关于ng-show与ng-if区别的主要内容,如果未能解决你的问题,请参考以下文章

何时支持 ng-if 与 ng-show/ng-hide?

angularJs十个面试题

Angular面试题

AngularJS 常见面试问题

angularjs笔记

角度 ng-if 或 ng-show 响应缓慢(2 秒延迟?)