标签:控制 tor address showmodal .com highlight tle 开始 程序
对于微信事件,不多说,自己看文档https://mp.weixin.qq.com/debug/wxadoc/dev/framework/view/wxml/event.html?t=20161122
效果
首先,注意一下微信小程序事件触发顺序
单击 | touchstart → touchend → tap |
双击 | touchstart → touchend → tap → touchstart → touchend → tap |
长按 | touchstart → longtap → touchend → tap |
看到没 所有的点击事件必然会触发tap - - Are you kidding me ?
所有的都有tap 那还有个毛线的用- - 可能我比较菜没有悟到其中奥秘 Orz
解决长按,其实方法很简单,提供两种思路吧
1. 触发longtap时加锁,手指移开屏幕时解除锁
2. 通过触发事件来控制事件分发
那么~ 简单粗暴,看代码
wxml:
主要看
<view wx:for="{{common_position}}" bindtouchstart="mytouchstart" bindtouchend="mytouchend" bindtap="editAddress" >
其他都是连带数据- - 完全可以无视
最最最重要的wxjs即将来临,噔噔噔噔~
代码都有备注,自己体会吧
微信小程序-双击长按longtap事件与tap事件冲突的解决办法
标签:控制 tor address showmodal .com highlight tle 开始 程序
原文地址:http://www.cnblogs.com/jiangbeixiaoqiao/p/6380741.html