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

移动端的长按事件的实现

时间:2020-03-21 21:30:05      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:on()   query   var   cti   title   移动   html   asc   script   

代码

<!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>

移动端的长按事件的实现

标签:on()   query   var   cti   title   移动   html   asc   script   

原文地址:https://www.cnblogs.com/everlose/p/12541864.html

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