长按钮触发事件的方法

这里是代码的逻辑编写部分

$.fn.longPress = function(fn) {
	    var timeout = undefined;
	    var $this = this;
	    alert(this.length);
	    for(var i = 0;i<$this.length;i++){
	        $this[i].addEventListener('touchstart', function(event) {
	            timeout = setTimeout(fn, 800);
	            }, false);
	        $this[i].addEventListener('touchend', function(event) {
	            clearTimeout(timeout);
	            }, false);
	    }
	    }
  

代码的代用部分,其中select是你所要获取的元素

  $(select).longPress(function(index){
    	alert("你已长按");
	});

  

原文地址:https://www.cnblogs.com/xzdwy-b/p/6126091.html