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>
posted @ 2020-04-11 16:31  _clai  阅读(1324)  评论(0编辑  收藏  举报