好像没有吧,页面加载里写个js,绑定touch事件,
let box = document.getElementById("r1c0p_div");
box.addEventListener("touchstart",(e)=>{
console.log('touchstart:手指按下时触发',e);
})
box.addEventListener("touchend",(e)=>{
console.log('touchend:手指离开时触发');
})
box.addEventListener("touchmove",(e)=>{
console.log('touchmove:手指拖动时触发')
}) |