angular 常用指令

angular 常用指令

ID:39464625

大小:52.00 KB

页数:9页

时间:2019-07-03

angular 常用指令_第1页
angular 常用指令_第2页
angular 常用指令_第3页
angular 常用指令_第4页
angular 常用指令_第5页
资源描述:

《angular 常用指令》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、angular常用指令已经用了angular很久积累了一些很实用的指令,需要的话直接拿走用,有问题大家一起交流1.focus时,input:text内容全选angular.module('my.directives').directive('autoselect',[function(){return{restrict:'A',link:function(scope,element,attr){if(element.is("input")&&attr.type==="text"){varselected=false;vartime=

2、parseInt(attr["autoselect"]);element.bind("mouseup",function(e){if(selected){e.preventDefault();e.stopPropagation();}selected=false;});if(time>0){element.bind("focus",function(event){setTimeout(function(){selected=true;event.target.select();},time);});}else{element.bin

3、d("focus",function(event){selected=true;event.target.select();});}}}};}]);2.clickOutside指令,外部点击时触发,click-outside="func()"func为自己指定的方法,一般为关闭当前层的方法,inside-id=""点击指定id的输入框时,当前层不关闭angular.module('my.directives').directive('clickOutside',['$document',function($document){ret

4、urn{restrict:'A',link:function(scope,element,attrs){$(element).bind('mousedown',function(e){e.preventDefault();e.stopPropagation();});$("#"+attrs["insideId"]).bind('mousedown',function(e){e.stopPropagation();});$("#"+attrs["insideId"]).bind('blur',function(e){setTimeou

5、t(function(){scope.$apply(attrs.clickOutside);});});$document.bind('mousedown',function(){scope.$apply(attrs.clickOutside);});}};}]);3.clickInside指令,内部点击时触发angular.module('my.directives').directive('clickInside',['$document',function($document){return{restrict:'A',link

6、:function(scope,element,attrs,ctrl){$(element).bind('focusclick',function(e){scope.$apply(attrs.clickInside);e.stopPropagation();});}};}]);4.scrollInside指令,内部滚动时触发angular.module('my.directives').directive('scrollInside',function(){return{restrict:'A',link:function(scop

7、e,element,attrs,ctrl){$(element).bind('scroll',function(e){scope.$apply(attrs.scrollInside);e.stopPropagation();});}};});5.bindKeyBoardEvent指令,内部获得焦点或者点击时触发angular.module('my.directives').directive('bindKeyBoardEvent',function(){return{restrict:'A',link:function(scope,

8、element,attrs,ctrl){$(element).bind('focusclick',function(e){scope.$apply(attrs.bindKeyBoardEvent);e.stopPropagation(

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。