이 기사의 내용은 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!