1、元素不可选中
document{
-webkit-user-select: none; /* Chrome / Safari */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* IE 10+ */ user-select: none;
}
2、元素点击不高亮
document{
-webkit-tap-highlight-color:rgba(0,0,0,0);
}
另外元素取消选中
window.getSelection().removeAllRanges();