求推荐 jquery  支持触屏 事件 的插件
如:
触摸事件
ontouchstart
ontouchmove
ontouchend
ontouchcancel 

解决方案 »

  1.   

    楼主你可以这样//适应触控设备
    function eventAdapt(){
    mousedown = "mousedown ";
    mousemove = "mousemove ";
    mouseup = "mouseup ";
    mouseout= "mouseout ";
    if ('ontouchstart' in window) {
    mousedown = "touchstart ";
    mousemove = "touchmove ";
    mouseup = "touchend ";
    mouseout= "touchcancel ";
    }
    }
      

  2.   

    看起来是个不错的主意。
    但还没搞明白,怎么用。方便给个demo 吗?
      

  3.   

    看起来是个不错的主意。
    但还没搞明白,怎么用。方便给个demo 吗?
      

  4.   

    看起来是个不错的主意。
    但还没搞明白,怎么用。方便给个demo 吗?不好意思,引用错误。
      

  5.   

    今天下午刚刚写了这个,http://bbs.csdn.net/topics/390623315#post-395939549,你看看楼里有demo地址