angularjs – 如何在角度js中解析字符串中的html标签

前端之家收集整理的这篇文章主要介绍了angularjs – 如何在角度js中解析字符串中的html标签前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在控制器中我有一个变量说$scope.question.
$scope.question = "Hi this is <br/> book";

在html页面中访问此变量,如{{question}}.

<div class="question">
        1. {{question}}
</div>

我希望输出换行…但它显示为字符串…如何解析html标签.

你应该使用ng-bind-html指令.要利用它,您需要:
//1. given
.controller('AppController',[
  function() {
   $scope.SomeHtml = '<b>some html</b>';


//2. use ng-bind
 <div ng-bind-html="SomeHtml"></div>

查看演示from official AngularJS documentation on plnkr.co.

原文链接:https://www.f2er.com/angularjs/141329.html

猜你在找的Angularjs相关文章