css:
/*阻止默認長按選中文本*/ * { /*ios,如果不行可以加一個透明遮罩層*/ -webkit-touch-callout:none; touch-callout:none; /*安卓*/ -webkit-user-select: none; user-select: none; }
/*阻止默認點擊出現陰影*/ *{ -webkit-tap-highlight-color: rgba(0,0,0,0); -webkit-tap-highlight-color:transparent; }
js:
//阻止默認長按出現菜單 window.ontouchstart = function(e) { e.preventDefault(); };