首頁  >  文章  >  web前端  >  怎麼實現html禁止選擇

怎麼實現html禁止選擇

藏色散人
藏色散人原創
2021-04-12 09:36:262910瀏覽

html禁止選擇的實作方法:1、透過css的方式實作禁止html內容被選取;2、透過在body標籤中加入onselectstart等屬性實作禁止html內容被選取;3、透過在js中新增onselectstart語句實作禁止。

怎麼實現html禁止選擇

本文操作環境:windows7系統、HTML5&&CSS3版、Dell G3電腦。

頁面中,禁止html內容被選取

1、透過css的方式

*{
moz-user-select: -moz-none;
-moz-user-select: none;
-o-user-select:none;
-khtml-user-select:none;
-webkit-user-select:none;
-ms-user-select:none;
user-select:none;
}

user-select屬性:參考https://www.html.cn/book /css/properties/user-interface/user-select.htm

2、透過在body標籤中加入以下屬性:

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

前面一句是禁止右鍵的,後面一句話是禁止複製的。

3、在js中加入以下兩行語句:

//禁止页面选择以及鼠标右键
document.function(){return false;}; 
document.onselectstart=function(){return false;};

【推薦學習:HTML影片教學

以上是怎麼實現html禁止選擇的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn