CSS 禁止选中文本

禁止选中文本

css 写法

.box {
    /* 禁止选中文本 */
    -moz-user-select: none; /*火狐*/
    -webkit-user-select: none; /*webkit浏览器*/
    -ms-user-select: none; /*IE10*/
    -khtml-user-select: none; /*早期浏览器*/
    -webkit-touch-callout: none;
    user-select: none;
}

js 写法

<body   onselectstart="return   false;">
<table   onselectstart="return   false;">
</table>
</body>

禁止鼠标右键

<body oncontextmenu="return false;" onselectstart="return false"></body>
原文地址:https://www.cnblogs.com/chlai/p/12680725.html