在Select-Option标记

时间:2017-03-13 13:40:41

标签: javascript html angularjs ngsanitize

我在下面有这个代码。这是使用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>

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

2 个答案:

答案 0 :(得分:5)

您可以使用ng-repeat并使用ng-bind-html。请参阅以下代码:

<select ng-model="selectedOption">
    <option value="">Select</option>
    <option ng-repeat="x in theOptions" ng-bind-html="x.label" value="{{x.id}}" id="{{x.id}}"></option>
</select>

答案 1 :(得分:1)

如果您需要使用ng-options,则以下是一些相关的solutionsplunker enter image description here,其中包含您的代码。希望这可以帮助。请注意,我还将您的标签更改为html实体代码。