Angular是基於模塊的框架,所以上來確定要建立一個本身的模塊:javascript
var myAppModule = angular.module("myApp",[]);
而後在此模塊基礎上建立指令directivehtml
myAppModule.directive("xingoo",function(){ return{ restrict:'AECM', template:'<div>hello my directive</div>', replace:true } });
其中,xingoo是咱們自定義標籤的名字,後面跟着它的方法函數。java
函數return了一個鍵值對組合,其中定義了標籤的使用方法、屬性等等內容。app
那麼看看它都定義了哪些內容吧:框架
1 restrict:定義了標籤的使用方法,一共四種,分別是AECM函數
2 template:定義標籤的模板。裏面是用於替換自定義標籤的字符串ui
3 replace:是否支持替換spa
4 transclude:是否支持內嵌rest
上面提到了標籤的四種使用方法,即AECM。htm
A attribute屬性:當作屬性來使用
<div xingoo></div>
E element元素:當作標籤元素來使用
<xingoo></xingoo>
C class類:當作CSS樣式來使用
<div class="xingoo"></div>
M comments註釋:當作註釋使用(這種方式在1.2版本下親測不可用!)
<!-- directive:xingoo --> <div></div>
通常來講推薦,當作屬性和元素來使用。
當想要在現有的html標籤上擴展屬性時,採用屬性的方式。
當想要自定義標籤時,採用標籤的形式。
想要使用那種方式,必需要在定義directive中的restrict裏面聲明對應的字母。
由於標籤內部能夠嵌套其餘的標籤,所以想要在自定義標籤中嵌套其餘的元素標籤,則須要:
1 使用transclude屬性,設置爲true。
2 並使用ng-transclude屬性,定義內部嵌套的位置。
代碼以下:
myAppModule.directive("test",function(){ return{ restrict:'AECM', transclude:true, template:"<div>haha! <div ng-transclude></div> wuwu!</div>" } });
<!doctype html> <html ng-app="myApp"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script src="http://apps.bdimg.com/libs/angular.js/1.2.16/angular.min.js"></script> </head> <body> <xingoo></xingoo> <div xingoo></div> <div class="xingoo"></div> <!-- directive:xingoo --> <div></div> <hr> <xingoo>3333</xingoo> <hr> <test>4444</test> <script type="text/javascript"> var myAppModule = angular.module("myApp",[]); myAppModule.directive("xingoo",function(){ return{ restrict:'AECM', template:'<div>hello my directive</div>', replace:true } }); myAppModule.directive("test",function(){ return{ restrict:'AECM', transclude:true, template:"<div>haha! <div ng-transclude></div> wuwu!</div>" } }); </script> </body> </html>
運行結果