我有一個角碼需要插入html標籤,我發現我可以使用ngSanitize
:https://docs.angularjs.org/api/ngSanitize,但我不會在該項目中加載另一個庫。在AngularJS中顯示HTML
我嘗試這樣做:AngularJS : Render HTML in $scope variable in view
,但我不能讓工作。
這是沒有加載另一個角度庫的任何方式嗎?
HTML:
<div ng-controller="MyCtrl">
<ul class="procedures">
<li ng-repeat="procedure in procedures">
<h4><a href="#" ng-click="show = !show">{{procedure.icon}}</a></h4>
<div class="procedure-details" ng-show="show">
<p>text here: {{procedure.text}}</p>
<p>your number is: {{procedure.number}}</p>
<p>price you will pay: {{procedure.price}}</p>
</div>
</li>
</ul>
</div>
JS:
var myApp = angular.module('myApp', []);
//myApp.directive('myDirective', function() {});
//myApp.factory('myService', function() {});
function MyCtrl($scope) {
$scope.procedures = [{
icon: '<i class="fa fa-american-sign-language-interpreting" aria-hidden="true"></i>',
text: 'test text',
number: 1,
price: 10000
}];
}
的jsfiddle:
http://jsfiddle.net/wD7gR/247/
感謝這就是我想要的,但現在你的代碼被打破顯示DIV之前,我在點擊圖標。 – Raduken
@Raduken刪除了所有與主題無關的代碼。我敢肯定,你可以添加任何邏輯隱藏/顯示沒有麻煩;-) –
@Raduken,無論如何,我點擊更新與隱藏/隱藏的嵌入式代碼片段。 –