码迷,mamicode.com
首页 > 移动开发 > 详细

手机端js模拟长按事件(代码仿照jQuery)

时间:2015-02-05 17:58:24      阅读:820      评论:0      收藏:0      [点我收藏+]

标签:

代码编写:

$.fn.longPress = function(fn) {
	var timeout = undefined;
	var $this = this;
	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).longPress(function(){
	alert(1);
});

  

手机端js模拟长按事件(代码仿照jQuery)

标签:

原文地址:http://www.cnblogs.com/Silababy/p/4275240.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!