菜鸟学堂
在线运行
源代码
<!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"> <div class="jb51-directive"></div> <script> var app = angular.module("myApp", []); app.directive("jb51Directive", function() { return { restrict : "C", template : "<h1>自定义指令!</h1>" }; }); </script> <p><strong>注意:</strong> 你必须设置 <b>restrict</b> 的值为 "C" 才能通过类名来调用指令。</p> </body> </html>
运行结果
在线运行
菜鸟学堂 edu.jb51.net