码迷,mamicode.com
首页 > Web开发 > 详细

angularJS DOM element() $compile()

时间:2016-01-30 02:36:59      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

 

我们可以使用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()

标签:

原文地址:http://www.cnblogs.com/zcynine/p/5170359.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!