1️⃣ 触发点
2️⃣ PC 端
mousemove:不需要鼠标按下,但是必需在元素上才能触发
mouseup:必需在元素上抬起才能触发
2️⃣ 移动端
touchmove:必需手指按下才能触发,但是,按下后不在元素上也能触发
touchend:不需要在元素上抬起就能触发
1️⃣ 触发顺序
touchstart → touchmove → touchend → mousedown → click → mouseup【 pc 的事件在移动端里会有延迟,300ms 左右】
1️⃣ touchstart 与 click 的区别
touchstart 为手指碰到元素就触发,click 为手指碰到元素并且抬起才会触发