>위챗 애플릿 >미니 프로그램 개발 >WeChat Mini 프로그램 예: 클릭 이벤트 및 길게 누르기 이벤트의 코드 구현

WeChat Mini 프로그램 예: 클릭 이벤트 및 길게 누르기 이벤트의 코드 구현

不言
不言원래의
2018-08-21 17:12:486787검색

이 기사의 내용은 WeChat 애플릿 예제: 클릭 이벤트 및 길게 누르기 이벤트의 코드 구현입니다. 필요한 친구가 참고할 수 있기를 바랍니다.

<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("长按");  
},

관련 권장 사항:

미니 프로그램에서 버튼과 스크롤 막대의 기본 스타일을 지우는 방법(코드)

# 🎜🎜#

WeChat 애플릿의 json 구성 구성 방법 소개(코드 포함)

위 내용은 WeChat Mini 프로그램 예: 클릭 이벤트 및 길게 누르기 이벤트의 코드 구현의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.