CSS 禁止选中文本
程序员文章站
2022-06-27 21:28:33
禁止选中文本 css 写法 js 写法 禁止鼠标右键 ......
禁止选中文本
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>