1 阻止点击的默认事件

event.preventDefault();

2 阻止移动端 长按选择文字的默认事件
* {
-webkit-touch-callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}

3 阻止移动端长按图片,默认保存图片事件
-webkit-touch-callout: none;(IOS)
 

相关文章:

  • 2021-12-17
  • 2022-12-23
  • 2021-12-08
  • 2021-08-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-09-02
  • 2021-11-22
  • 2022-12-23
  • 2021-11-01
  • 2021-08-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案