zoukankan      html  css  js  c++  java
  • 移动开发阻止默认事件,1默认长按复制2拖动时页面默认移动

    1    window.ontouchstart = function(e) { e.preventDefault(); };
    2     document.addEventListener("touchmove", function(e){ e.preventDefault(); }, false);

    这里的document和window可以通用互换,不影响使用效果;

    后期查到后在补充吧;

    以后在移动页面开发中,如果要禁止掉,默认长按和默认拖动事件就可以这样做;

    坚持下去就能成功
  • 相关阅读:
    B-树与B+树
    RPC原理
    高可用
    Srpingboot与dubbo整合的三种方式
    html
    SQL5
    SQL4
    SQL3
    SQL2
    SQL语句1
  • 原文地址:https://www.cnblogs.com/suoking/p/5142961.html
Copyright © 2011-2022 走看看