여러 번 클릭 방지 버튼

단추가 짧은 시간에 여러 번 클릭하고 이벤트를 여러 번 터치하는 것을 방지합니다
<button bindtap="toGetWithdraw" > </button>
    // 
    toGetWithdraw:function(){
        var that=this;
        if(that.data.showis==true){// 
                that.zhifu();
                that.setData({
                    showis:false
                })
                setTimeout(function(){
                    that.setData({
                        showis:true
                    })
                },4000)
        }
    },

좋은 웹페이지 즐겨찾기