触摸屏幕时间长短时间、禁止页面点击事件

/*触摸屏幕时间事件(需要先引入JQ插件)*/

$.fn.extend({
  mctap:function(func){
    var _this=this;
    this.on('touchstart',function(e){
    tiptimer=new Date();
    }).on('touchend',function(e){
      if(new Date()-tiptimer>300) {func.bind(this,e)();}
    })
  }
});

/*禁止页面点击*/

$("#xxx").css({"pointer-events":"none"});

猜你喜欢

转载自www.cnblogs.com/Cloudloong/p/9563231.html