html禁止選擇的實作方法:1、透過css的方式實作禁止html內容被選取;2、透過在body標籤中加入onselectstart等屬性實作禁止html內容被選取;3、透過在js中新增onselectstart語句實作禁止。
本文操作環境: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中文網其他相關文章!