1. 程式人生 > >觸摸屏幕時間長短時間、禁止頁面點擊事件

觸摸屏幕時間長短時間、禁止頁面點擊事件

nts () poi func 觸摸屏 css point ext time

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

觸摸屏幕時間長短時間、禁止頁面點擊事件