禁止元素被选中

禁止元素被选中
在css的样式表里,添加这样属性(可兼容所有浏览器)

{
   -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   -ms-user-select: none;
   user-select: none;
}

关于IE10的:

http://ie.microsoft.com/testdrive/HTML5/msUserSelect/

你可能感兴趣的:(禁止元素被选中)