AngularJS ng-bind-template 指令
AngularJS ng-bind-template 指令用于告诉 AngularJS 将给定表达式的值替换 HTML 元素的内容
当你想在 HTML 元素上绑定多个表达式时可以使用 ng-bind-template 指令
语法
<element ng-bind-template="expression"></element>
所有的 HTML 元素都支持该指令
参数值
值 | 描述 |
---|---|
expression | 一个或多个要执行的表达式,每个使用 |
范例
<p> 元素上绑定两个表达式
<!DOCTYPE html> <meta charset="utf-8"> <link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/> <script src="https://cdn.staticfile.org/angular.js/1.6.3/angular.min.js"></script> <div ng-app="myApp" ng-bind-template="{{firstName}} {{lastName}}" ng-controller="myCtrl"> </div> <footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer> <script> var app = angular.module("myApp", []); app.controller("myCtrl", function($scope) { $scope.firstName = "李"; $scope.lastName = "白"; }); </script>