angularJS DOM element() $compile()
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angularJS DOM element() $compile()相关的知识,希望对你有一定的参考价值。
我们可以使用angularJS来动态地添加和删除节点
与jQuery不同的是,html字符串需要经过$compile()方法的编译才能产生html的DOM的node
注意element()方法的使用
//通过$compile动态编译html var html="<div ng-click=‘test()‘>}</div>"; var template = angular.element(html); var mobileDialogElement = $compile(template)($scope); angular.element(document.body).append(mobileDialogElement); // remove移除创建的元素 var closeMobileDialog = function () { if (mobileDialogElement) { mobileDialogElement.remove(); } }
以上是关于angularJS DOM element() $compile()的主要内容,如果未能解决你的问题,请参考以下文章
AngularJS操作DOM——angular.element