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 @   _clai  阅读(1328)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示