admin管理员组文章数量:1336367
Angular gives access to some jquery functions here
I'm just wondering if there is any difference in performance between .hide() and using the ngIf directive?
Added clarification that came from ments
I understand the difference between ngIf and ngShow, but I'm wondering about the performant differences between using the ng directives versus calling angular.element() and chaining it with .hide()
Angular gives access to some jquery functions here
I'm just wondering if there is any difference in performance between .hide() and using the ngIf directive?
Added clarification that came from ments
I understand the difference between ngIf and ngShow, but I'm wondering about the performant differences between using the ng directives versus calling angular.element() and chaining it with .hide()
Share Improve this question edited Dec 2, 2016 at 11:32 Kraken asked Dec 1, 2016 at 17:17 KrakenKraken 5,9203 gold badges30 silver badges52 bronze badges2 Answers
Reset to default 3hide/show
would not remove the element from the dom but would just add display:none
property where as ng-if
would remove
the element pletely from the dom
.
If your UI has a lot of elements, you can use ng-if to instantiate the relevant ones which would save a lot of resources. As your view does not need to create all the ones and then apply display:none
property to one which should not be shown in view
.
If you are going to remove
and show
an element very often from your view, hiding
it instead of removing
could improve performance
.
the .hide()
method is equivalent to .css( "display", "none" )
, while ng-if
remove the element from the dom. This is the major difference.
jqlite .hide()
acts the same way as ng-show
/ ng-hide
directives
The .ng-hide CSS class is predefined in AngularJS and sets the display style to none (using an !important flag).
https://docs.angularjs/api/ng/directive/ngShow
本文标签: javascriptangularelement()hide() versus ngIfStack Overflow
版权声明:本文标题:javascript - angular.element().hide() versus ngIf - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742405285a2468693.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论