在控制器中我有一个变量说$scope.question.
$scope.question = "Hi this is <br/> book";
在html页面中访问此变量,如{{question}}.
<div class="question"> 1. {{question}} </div>
你应该使用ng-bind-html指令.要利用它,您需要:
原文链接:https://www.f2er.com/angularjs/141329.html//1. given .controller('AppController',[ function() { $scope.SomeHtml = '<b>some html</b>'; //2. use ng-bind <div ng-bind-html="SomeHtml"></div>