禁止選中文本
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.uj5u.com/qiye/47749.html
標籤:Html/Css
下一篇:實作a標簽按鈕完全禁用【轉】
