两种方式实现
一、css方式
/* css style: */
html,body{
-moz-user-select: none;
-khtml-user-select: none;
user-select: none;
}
二,html方式
<div unselectable="on" onselectstart="return false;" style="-moz-user-select:none;">bfw</div>unselectable针对IE
onselectstart针对Chrome、Safari
-moz-user-select是firefox专有的
网友回复