问题:
之前在angularjs中手动拼接了一段html里面加了事件,但是不生效,后来才发现动态添加的html并没有编译。
解决方法:
vartemplate = angular.element(demoHtml);
varmobileDialogElement = $compile(template)($scope);
angular.element($(
"#planContent")).append(mobileDialogElement);
问题:
之前在angularjs中手动拼接了一段html里面加了事件,但是不生效,后来才发现动态添加的html并没有编译。
解决方法:
vartemplate = angular.element(demoHtml);
varmobileDialogElement = $compile(template)($scope);
angular.element($(
"#planContent")).append(mobileDialogElement);
本文标题:在Angularjs中动态生成dom元素,如何动态编译
本文链接:https://www.haomeiwen.com/subject/fwgdmxtx.html
网友评论