angularJS 使用自定义指令输出模板
Posted xuelei被占用了
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angularJS 使用自定义指令输出模板相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script> </head> <body ng-app="myApp" ng-init="obj={ a:1,b:2,firstName:‘guanghan‘,lastName:‘xue‘}"> <div > <div class="runoob-directive"></div> </div> <script> var app = angular.module("myApp", []); app.directive("runoobDirective", function () { return { restrict: ‘C‘,//表示使用class匹配 默认使用标签匹配 即 <runoob-directive></runoob-directive> template: "<h1>自定义指令!</h1>"//这是对应得输出html模板 }; }); </script> </body> </html>
也可以这样使用
<div runoob-directive></div> 使用属性匹配restrict不要填就行了
以上是关于angularJS 使用自定义指令输出模板的主要内容,如果未能解决你的问题,请参考以下文章