bind:touchstart ,ios下会滑动页面然后手指离开录音没停止?
bind:touchstart 长按录音的时候可以移动手指。ios下会滑动页面然后手指离开,录音没停止
<button class="cu-btn bg-white shadow" style="width:55.3%;" wx:if="{{writeType == 'record'}}" bind:touchstart="start" bind:touchend="stop" bind:touchmove="move">按住 说话</button>
使用move没有打印任何数据
JS:
move(e){
console.log(e)
}
2 回复