目的:想用VIEW模拟按钮点击的效果
问题:点击子节点的元素,不触发bindtouchstart、bindtouchend、bindlongtap
<view class="a" bindtouchstart="bindtouchstart" bindtouchend="bindtouchend" bindlongtap="bindlongtap">
<view>
<image class="b" src="/images/icon/icon.png"></image>
<view class="c">test</view>
</view>
</view>

算了,我还是改成用button,自定义样式了
看下你JS代码是怎么写的
bindtouchstart(){this.setData({state: 1})},bindtouchend(){this.setData({state: 2})}