3.0.2之后的版本,canvas不响应事件,3.0.1及其之前的版本都能响应。
我的手机是IQOO Z5,别的手机不知道
示例代码如下:
<canvas style="width: 300px; height: 200px;background-color: red;" type="2d" bindtouchstart="touchStart" bindtouchmove="touchMove"></canvas>
Page({
touchStart: function touchStart(e: any) {
console.log("touchStart", e);
},
touchMove: function touchMove(e: any) {
console.log("touchMove", e);
},
}
)
这里可以先用 bind:touchstart bind:touchmove 解决
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)