module:
//模型 var app = angular.module('mytest',[]); //过滤器 app.filter('trustHtml',['$sce',function ($sce) { return function (data) { return $sce.trustAsHtml(data); } }]);
html使用:
<!--使用过滤器--> <div class="attr" ng-bind-html="item.title | trustHtml"> <em>{{item.title}}</em> </div>