模拟长按事件

Posted bchange

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模拟长按事件相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK" />
<title>无标题文档</title>
<script
src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<div id="mydiv" style="width:100px; height:100px; background:#ddd;">out</div>
</body>
</html>
<script>
/*设置一个长按的计时器,如果点击这个图层超过2秒则触发,mydiv里面的文字从out变in的动作*/
var timeout ;
 
$("#mydiv").mousedown(function() {
console.log(1)
    timeout = setTimeout(function() {
        $("#mydiv").text("in");
    }, 2000);
});
 
$("#mydiv").mouseup(function() {
    clearTimeout(timeout);
    $("#mydiv").text("out");
});
$("#mydiv").mouseout(function() {
    clearTimeout(timeout);
    $("#mydiv").text("out");
});
</script>
































以上是关于模拟长按事件的主要内容,如果未能解决你的问题,请参考以下文章

模拟长按事件

模拟长按电源键

H5实现按钮的长按事件

js中模拟移动端长按效果

Android系统中自定义按键的短按双击长按事件

求教:android 模拟器怎样模拟 长按 功能?