html設定禁止選取的方法:1、透過在body標籤中加入相關屬性,程式碼為【<body "return false;" onselectstart="return false">】;2、在js中新增相關語句。
本教學操作環境:windows7系統、html5版,DELL G3電腦。
html設定禁止選取的方法:
1、透過在body標籤中加入以下屬性:
<body "return false;" onselectstart="return false">
前面一句話是禁止右鍵的,後面一句是禁止複製的。
2、在js中加入以下兩行語句:
//禁止页面选择以及鼠标右键 document.function(){return false;}; document.onselectstart=function(){return false;};
相關學習推薦:html影片教學
以上是html如何設定禁止選中的詳細內容。更多資訊請關注PHP中文網其他相關文章!