码迷,mamicode.com
首页 > 其他好文 > 详细

触屏Tap模拟事件

时间:2015-06-07 20:07:33      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:

触屏的click因为有双击判断所以有200ms的延迟,zepto里的touch.js兼容不好所以tap也没法直接用。

gibhub上有个fastclick太大了。

自己用touched写个简单的模拟tap事件,并在内部加上e.preventDefault();阻止系统默认行为。

	/*
		模拟Tab事件
		@obj:元素
		@callback:回调函数
	*/
	function Tap(obj, callback){
		document.body.addEventListener(‘touchend‘,function(e){
			if(typeof callback == ‘function‘ && obj==e.target){callback();}
			//阻止“默认行为”
		    e.preventDefault();
		});		
	}

  

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
		.box{width: 100px;height: 100px;background: green;margin:5px;}
	</style>
</head>
<body>
	
	<div class="box" id="box1"></div>
	<div class="box" id="box2"></div>

	<script>

	/*
		模拟Tab事件
		@obj:元素
		@callback:回调函数
	*/
	function Tap(obj, callback){
		document.body.addEventListener(‘touchend‘,function(e){
			if(typeof callback == ‘function‘ && obj==e.target){callback();}
			//阻止“默认行为”
		    e.preventDefault();
		});		
	}

	Tap(document.getElementById(‘box1‘),function(){
		console.log(‘tab1‘);
	});

	Tap(document.getElementById(‘box2‘),function(){
		console.log(‘tab2‘);
	});

	Tap(document.body,function(){
		console.log(‘body‘);
	});
	</script>
</body>
</html>

  

触屏Tap模拟事件

标签:

原文地址:http://www.cnblogs.com/dtdxrk/p/4558985.html

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