码迷,mamicode.com
首页 > 其他好文 > 详细

场景下开发-angular-directive

时间:2017-08-11 13:38:23      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:restrict   direct   ict   return   false   mpi   var   scl   attr   

 

.directive(‘expander‘, function() {
    /*
    expander()
    restrict: E,A,C,M(元素,属性,样式,注释)
    transclude:true替换
    compile(编译)和link(连接)
    <expander class=‘expander‘ expander-title=‘title‘></expander>

*/ var scope ={title : ‘=expanderTitle‘}; var template = ‘<div><div class="title" ng-click="toggle()">{{title}}</div><div class="body" ng-show="showMe" ng-transclude></div></div>‘; var link = function(scope, element, attrs){ scope.showMe = false; scope.toggle = function toggle() { scope.showMe = !scope.showMe; } } return { restrict : ‘EA‘, replace : true, transclude : true, scope : scope, template : template, link : link // link : function(scope, element, attrs) {} } })

 

场景下开发-angular-directive

标签:restrict   direct   ict   return   false   mpi   var   scl   attr   

原文地址:http://www.cnblogs.com/alan-alan/p/7345216.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!