当前位置:   article > 正文

微信小程序点击事件和长按事件_小程序原生长按事件

小程序原生长按事件
  1. <button 
  2. bindtouchstart="handleTouchStart" 
  3. bindtouchend="handleTouchEnd" 
  4. bindlongpress="handleLongPress" 
  5. bindtap="handleClick">
  6. 点击/长按</button> 
  7. <!-- button 可以换成view-->
  1. //touch start
  2. handleTouchStartfunction(e) {    
  3.     this.startTime = e.timeStamp;    
  4.     //console.log(" startTime = " + e.timeStamp);  
  5. },  
  6. //touch end
  7. handleTouchEndfunction(e) {    
  8.     this.endTime = e.timeStamp;    
  9.     //console.log(" endTime = " + e.timeStamp);  
  10. },  
  11. handleClickfunction(e) {    
  12.     //console.log("endTime - startTime = " + (this.endTime - this.startTime));    
  13.     if (this.endTime - this.startTime < 350) {      
  14.     console.log("点击");    
  15.     }  
  16. },  
  17. handleLongPressfunction(e) {    
  18. //console.log("endTime - startTime = " + (this.endTime - this.startTime));
  19. console.log("长按");  
  20. },

个人微信号 qicong88 ,欢迎来聊

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/489725
推荐阅读
相关标签
  

闽ICP备14008679号