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

/*触摸屏幕时间事件(需要先引入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"});

posted @ 2018-08-30 22:57  美滋滋的胖虎  阅读(475)  评论(0编辑  收藏  举报