最新的Web開發教程
 

AngularJS NG-的bind-HTML指令


綁定<p>元素的會將myText變量的innerHTML:

<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.0-beta.2/angular-sanitize.js"></script>
<body>

<div ng-app="myApp" ng-controller="myCtrl">

    <p ng-bind-html="myText"></p>

</div>

<script>
var app = angular.module("myApp", ['ngSanitize']);
app.controller("myCtrl", function($scope) {
    $scope.myText = "My name is: <h1>John Doe</h1>";
});
</script>
試一試»

定義和用法

ng-bind-html指令是結合內容到HTML元素的安全方式。

當你讓AngularJS在應用程序中編寫HTML,你應該檢查危險的代碼的HTML。 通過在應用程序中的“角santize.js”模塊中,您可以通過在ngSanitize功能運行HTML代碼這樣做。


句法

< element ng-bind-html=" expression "></ element >

所有HTML元素的支持。


參數值

Value Description
expression Specifies a variable, or an expression to evaluate.