菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html><head> <meta charset="utf-8"> <script src="http://edu.jb51.net/libs/angular.js/1.4.6/angular.min.js"></script> </head> <body ng-app="myApp"> <jb51-directive></jb51-directive> <div jb51-directive></div> <script> var app = angular.module("myApp", []); app.directive("jb51Directive", function() { return { restrict : "A", template : "<h1>自定义指令!</h1>" }; }); </script> <p><strong>注意:</strong> 通过设置 <strong>restrict</strong> 属性值为 "A" 来设置指令只能通过 HTML 元素的属性来调用。</p> </body> </html>
运行结果
在线运行
菜鸟学堂 edu.jb51.net