来自绑定html的id不会出现在DOM中

时间:2016-11-11 16:30:12

标签: angularjs

我正在使用ng-bind-html并且有一个带有类和id的div。

<div class="myCustomClass" id="myCustomID">My Content</div>

当我检查元素时,我可以看到该类但缺少ID。这是一个说明问题的工作人员:https://plnkr.co/edit/iHeQQI?p=preview

1 个答案:

答案 0 :(得分:1)

您需要使用$sce服务处理html源代码:

app.controller('Ctrl', function($scope, $sce) {
  $scope.html = $sce.trustAsHtml('<div id="myID" class="myClass">Inspecting this element shows the class but not the ID</div>');
});