首页 > 编程 > JavaScript > 正文

angularjs中使用ng-bind-html和ng-include的实例

2019-11-19 16:42:23
字体:
来源:转载
供稿:网友

下面这个例子,往div标签内添加html内容:

<!doctype html><html ng-app="myApp"><head> <meta charset="UTF-8"> <title>demo</title> <script type="text/javascript" src="lib/angularjs/angular.min.js" charset="utf-8"></script> </head><body ng-controller="ctrl">  <div ng-bind-html="myText"></div><script>var app = angular.module('myApp',[]);app.controller("ctrl",function($scope,$sce){  $scope.myText = $sce.trustAsHtml("<b>粗体内容</b><br/><i>斜体内容</i>");});</script></body></html>

注意在赋值时需要将html用$sce.trustAsHtml作一个处理,不然页面会报错,无法输出内容。

下面是ng-include的使用示例,跟上面的例子差不多,只是把要添加的html内容放到一个文件中:

<!doctype html><html ng-app="myApp"><head> <meta charset="UTF-8"> <title>demo</title> <script type="text/javascript" src="lib/angularjs/angular.min.js" charset="utf-8"></script> </head><body ng-controller="ctrl">  <div ng-include="'demo1_1.html'"></div><script>var app = angular.module('myApp',[]);app.controller("ctrl",function($scope){});</script></body></html>

demo1_1.html

<b>粗体内容222</b><br/><i>斜体内容222</i>

以上这篇angularjs中使用ng-bind-html和ng-include的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持武林网。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表