鼠标拖拽、双击出现蓝色背景的去掉方法

css方法:

body{
        -moz-user-select: none; /*火狐*/
        -webkit-user-select: none; /*webkit浏览器*/
        -ms-user-select: none; /*IE10*/
        -khtml-user-select: none; /*早期浏览器*/
        user-select: none;
    }

js方法:在标签上添加

onselectstart="return false;"

在input textarea标签中无效。
这个方法是禁止内容被选中。

你可能感兴趣的:(鼠标拖拽、双击出现蓝色背景的去掉方法)