指令

AngularJS 指令入门

指令是运行在特定 dom 元素上的函数,用来扩展元素的功能。一个简版的 directive 的形式是这样的app.directive('myDirective', myDirective);myDirective.$inject = [];function myDirective(){return {restrict: "AE",template: ''scope: {},