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

自定义指令

时间:2014-11-11 16:10:01      阅读:163      评论:0      收藏:0      [点我收藏+]

标签: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

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