angularjs中无法直接使用ng-bind-html:
1
|
< div ng-bind-html = "item.text | highlight: $select.search" ></ div >
|
1.app.js中添加
1
2
3
|
angular.module( 'epcui' , [
'ngSanitize' // ngSanitize
]) |
2.html中添加sanitize
1
|
< script src = "js/angular/angular-sanitize.js" ></ script >
|
借鉴:http://www.cnblogs.com/yshyee/p/4272180.html