AngularJS入门4-小例子-自定义标签
效果图:
代码:
1 <div ng-app="app"> 2 <hello></hello> 3 </div> 4 <script> 5 var appModule= angular.module(‘app‘,[]); 6 appModule.directive(‘hello‘,function(){ 7 return { 8 restrict:‘E‘, 9 template:‘<div>template of hello</div>‘, 10 replace: true 11 } 12 }); 13 </script> 14 <script src="./angular.min.js"></script>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。