标签:io ar sp div on cti bs html htm
自定义指令有两种方法:
第一种:angular.module(‘myapp‘,[‘$scope‘,function($scope){
return {}
}])
第二种:angular.module(‘myapp‘,[]).directive(‘指令名‘,function(){
return {
restrict: ‘ACEM‘,
replace:true,
template:‘<div>content</div>‘,
templateUrl:‘demo/index.html‘ //这里的路径是相对angular下的index.html的,模板里的内容可以获取控制器里定义的属性变量
}
})
指令常用配置属性
transclude //这个属性可以保留被替换的内容
link
compile
标签:io ar sp div on cti bs html htm
原文地址:http://www.cnblogs.com/toward-the-sun/p/4089334.html