HTML小技巧

去除手机中按钮点击默认有灰色背景:

*{ tap-highlight-color:rbga(0, 0, 0, 0);

-webkit-tap-highlight-color:rgba(0,0,0,0);
}

// 禁止右键和手指长按事件
document.oncontextmenu = new Function('event.returnValue=false;');
document.onselectstart = new Function('event.returnValue=false;');

var bd = document.querySelector("#bd");
bd.oncontextmenu = function(){
return false;
}

// 获取自定义div的width、left解决方案

 var box = document.getElementById("box");
console.log(window.getComputedStyle(box, null).width);
原文地址:https://www.cnblogs.com/lianfu/p/5407324.html