标签:相对 作用 start star tar code event style span
拖动时候用到的三个事件:mousedown
、mousemove
、mouseup
在移动端都不起任何作用。毕竟移动端是没有鼠标的,查资料后发现,在移动端与之相对应的分别是:touchstart
、touchmove
、touchend
事件。还有一点要注意的是在PC端获取当前鼠标的坐标是:event.clientX
和event.clientY
,在移动端获取坐标位置则是:event.touches[0].clientX
和event.touches[0].clientY
。
mousedown、mousemove、mouseup和touchstart、touchmove、touchend
标签:相对 作用 start star tar code event style span
原文地址:http://www.cnblogs.com/520BigBear/p/7865877.html