【伸手党福利】手机移动端用户按下、拖动、抬起手指的监听函数jq【封装app、微信浏览器、小程序、uc浏览器都有效】

<script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-3.5.1.min.js"></script>
<script>
    $(document).on('touchstart',function(e) {
    
    
        console.log("111")

    })



    $(document).on('touchmove',function(e) {
    
    


    });

    $(document).on('touchend',function(e) {
    
    
      
    });
 </script>

猜你喜欢

转载自blog.csdn.net/wwppp987/article/details/109143857
今日推荐