HTML5-长按事件
Posted yqj234
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTML5-长按事件相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title></title>
<script type="text/javascript" src="http://lib.sinaapp.com/js/jquery/1.9.1/jquery-1.9.1.min.js"></script>
</head>
<body>
<div style="width:100%;">
<div id="touchArea" style="width:90%; height:200px; background-color:#CCC;font-size:100px">长按我</div>
</div>
<script>
var timeOutEvent=0;
$(function()
$("#touchArea").on(
touchstart: function(e)
timeOutEvent = setTimeout("longPress()",500);
e.preventDefault();
,
touchmove: function()
clearTimeout(timeOutEvent);
timeOutEvent = 0;
,
touchend: function()
clearTimeout(timeOutEvent);
if(timeOutEvent!=0)
alert("你这是点击,不是长按");
return false;
)
);
function longPress()
timeOutEvent = 0;
alert("长按事件触发发");
</script>
</body>
</html>
以上是关于HTML5-长按事件的主要内容,如果未能解决你的问题,请参考以下文章
Android 4.0 长按上的PhoneGap html5 应用