微信小程式實例:點擊事件和長按事件的程式碼實現

不言
發布: 2018-08-21 17:12:48
原創
6750 人瀏覽過

這篇文章帶給大家的內容是關於微信小程式實例:點擊事件和長按事件的程式碼實現,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。

<button 
bindtouchstart="handleTouchStart" 
bindtouchend="handleTouchEnd" 
bindlongpress="handleLongPress" 
bindtap="handleClick">
点击/长按</button> 
<!-- button 可以换成view-->
登入後複製
//touch start
handleTouchStart: function(e) {    
    this.startTime = e.timeStamp;    
    //console.log(" startTime = " + e.timeStamp);  
},  

//touch end
handleTouchEnd: function(e) {    
    this.endTime = e.timeStamp;    
    //console.log(" endTime = " + e.timeStamp);  
},  

handleClick: function(e) {    
    //console.log("endTime - startTime = " + (this.endTime - this.startTime));    
    if (this.endTime - this.startTime < 350) {      
    console.log("点击");    
    }  
},  

handleLongPress: function(e) {    
//console.log("endTime - startTime = " + (this.endTime - this.startTime));
console.log("长按");  
},
登入後複製

相關推薦:

小程式中button以及捲軸預設樣式如何清除(程式碼)

微信小程式中json配置的配置方法介紹(附程式碼)

#

以上是微信小程式實例:點擊事件和長按事件的程式碼實現的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板