我在下面的代码。这是使用NgOptions在表单中绘制某些选项的直接方法。



function NameCtrl($scope) {
  $scope.theOptions = [{
    'label': 'The Opt<sup>&trade;</sup>',
    'id': 3
  }]

}

<html ng-app>

<head>
  <meta charset="utf-8">
  <title>Angular.js Example</title>
  <script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.1/angular.min.js"></script>

</head>

<body ng-controller="NameCtrl">
  <select ng-model="selectedOption" ng-options="x.id as x.label for x in theOptions">
        <option value="">Select</option>
      </select>
</body>

</html>





我的问题是:有什么方法可以使Option The Opt<sup>&trade;</sup>在“选择”下拉列表中呈现Opt™?因为我不能使用ng-bind-html。有什么办法可以实现?任何帮助表示赞赏。

最佳答案

如果需要使用ng-options,这里有一些相关的solutions,下面是plunker,其中显示了此解决方案和您的代码。希望这可以帮助。请注意,我还将您的标记更改为html实体代码。

关于javascript - 在选择选项标签中使用ng-bind-html或类似内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42765091/

10-11 14:03