前几天项目需要,做了一个背景遮罩的弹出框,html采用js动态添加进去的,结果发现angularjs绑定在这里面不起作用,搜索下解决了,记录下:
var smallApplyParent = document.getElementById("smallApplyParent");
angular.element(document).injector().invoke(function($compile){
var scope = angular.element(smallApplyParent).scope();
$compile(smallApplyParent)(scope);
});
代码运行会更新 smallApplyParent 里面的作用域;
哈哈,又可以愉快的玩耍了....