angularjs中使用ng-bind-html和ng-include的实例
2019/6/27 20:59:57
本文主要是介绍angularjs中使用ng-bind-html和ng-include的实例,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
下面这个例子,往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的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持找一找教程网。
这篇关于angularjs中使用ng-bind-html和ng-include的实例的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-24Vue CLI多环境配置学习:从入门到实践
- 2024-11-24Vue CLI多环境配置学习:新手入门教程
- 2024-11-24Vue CLI学习:初学者指南
- 2024-11-24Vue CLI学习:从入门到上手的简单教程
- 2024-11-24Vue3+Vite学习:从零开始的前端开发之旅
- 2024-11-24Vue3阿里系UI组件学习入门教程
- 2024-11-24Vue3的阿里系UI组件学习入门指南
- 2024-11-24Vue3公共组件学习:新手入门教程
- 2024-11-24Vue3公共组件学习入门指南
- 2024-11-24vue3核心功能响应式变量学习