- /*如果是禁用长按选择文字功能,用css*/
- * {
- -webkit-touch-callout:none;
- -webkit-user-select:none;
- -khtml-user-select:none;
- -moz-user-select:none;
- -ms-user-select:none;
- user-select:none;
- }
- // 如果是想禁用长按弹出菜单, 用js
- window.addEventListener('contextmenu', function(e){
- e.preventDefault();
- });