阻止浏览器的默认事件

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)
 
原文地址:https://www.cnblogs.com/xiaofenguo/p/5773455.html