angular 常用指令

angular 常用指令

ID:39464625

大?。?2.00 KB

頁數(shù):9頁

時間:2019-07-03

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

《angular 常用指令》由會員上傳分享,免費在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫。

1、angular常用指令已經(jīng)用了angular很久積累了一些很實用的指令,需要的話直接拿走用,有問題大家一起交流1.focus時,input:text內(nèi)容全選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指令,外部點擊時觸發(fā),click-outside="func()"func為自己指定的方法,一般為關(guān)閉當前層的方法,inside-id=""點擊指定id的輸入框時,當前層不關(guān)閉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指令,內(nèi)部點擊時觸發(fā)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指令,內(nèi)部滾動時觸發(fā)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指令,內(nèi)部獲得焦點或者點擊時觸發(fā)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(

當前文檔最多預(yù)覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當前文檔最多預(yù)覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學公式或PPT動畫的文件,查看預(yù)覽時可能會顯示錯亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫負責整理代發(fā)布。如果您對本文檔版權(quán)有爭議請及時聯(lián)系客服。
3. 下載前請仔細閱讀文檔內(nèi)容,確認文檔內(nèi)容符合您的需求后進行下載,若出現(xiàn)內(nèi)容與標題不符可向本站投訴處理。
4. 下載文檔時可能由于網(wǎng)絡(luò)波動等原因無法下載或下載錯誤,付費完成后未能成功下載的用戶請聯(lián)系客服處理。