您好,登錄后才能下訂單哦!
VUE中怎么實現(xiàn)一個長按事件,針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
需求一:長按數(shù)字累加或者累減
HTML:
<div class="mui-numbox" data-numbox-step='10' data-numbox-min='0' data-numbox-max='100'> <button class="mui-btn mui-numbox-btn-minus" type="button"@touchstart="Loop_Sub(item.CartID)" @touchend="clearLoop()">-</button> <input class="mui-numbox-input" type="number" :value="item.Cart_Nums"/> <button class="mui-btn mui-numbox-btn-plus" type="button" @touchstart="Loop_Add(item.CartID)" @touchend="clearLoop()">+</button> </div>
JS:
var vm = new Vue({ el: "#vue-container", data:{ Loop:null }, methods:{//長按添加數(shù)量 Loop_Add:function(ID){ //設(shè)置數(shù)量 clearInterval(vm.Loop);//再次清空定時器,防止重復(fù)注冊定時器 $target=$(event.target).parent().find('input'); vm.Loop=setInterval(function(){ $num=$target.val(); $target.val(parseInt($num)+1); },100); }, //長按減少數(shù)量 Loop_Sub:function(ID){ //設(shè)置數(shù)量 clearInterval(vm.Loop);//再次清空定時器,防止重復(fù)注冊定時器 $target=$(event.target).parent().find('input'); vm.Loop=setInterval(function(){ $num=$target.val(); if($num>0){ $target.val(parseInt($num)-1); }else{ clearInterval(vm.Loop); } //改變點擊數(shù) },100); }, clearLoop:function(){ clearInterval(vm.Loop); } } })
這個Demo是在移動端測試的,因此使用的是touch事件。方法很簡單,touchstart的時候去注冊個Interval定時器,touchend的時候再把定時器清除掉,這樣就能實現(xiàn)長按持續(xù)累加或者累減的效果。
需求二:長按延時事件觸發(fā)
這類需求也比較簡單,和需求一類似。這里拿需求一舉例,只需在touchstart添加setTimeout計時器延時事件執(zhí)行,touchend清除計時器即可。
關(guān)于VUE中怎么實現(xiàn)一個長按事件問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。