我在下面有这个代码。这是使用NgOptions绘制表单中某些选项的直接方式。
function NameCtrl($scope) {
$scope.theOptions = [{
'label': 'The Opt<sup>™</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>™</sup>
在选择下拉列表中呈现选择™ ?因为我不能使用ng-bind-html。有什么办法可以实现吗?任何帮助表示赞赏。
答案 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)