记录一下css常用的一个效果,禁止文字的选中:
初始化的全局样式里面添加如下class样式,在需要的地方直接添加class就可以了
.no-select{-webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
在 IE <10 和Opera <15中我们需要在需要禁止选中的元素上面添加一个属性
unselectable&#61;“on”&#xff0c;否则可能不会生效哦~不过现代浏览器如果不是非得兼容一些老的浏览器也可以不加。