touch触摸事件

     原声移动端触屏事件touch分为3个事件:  touchstart 触摸开始 touchmove 触摸移动  touchup 触摸结束.

    对于触摸事件不能像鼠标点击等事件一样直接写 document.ontouchstart = function () {} , 添加触摸事件需要使用事件监听:                                                                                                       document.addEventListener("touchstart",function () {})

    document.addEventListener("touchmove",function () {})

    document.addEventListener("touchup",function () {})

你可能感兴趣的:(touch触摸事件)