html設定文字無法選取的方法:1、建立HTML頁面檔案;2、透過設定css樣式為「user-seletct: none;-webkit-user-seletct: none;-moz-user-seletct : none;」即可。
本文操作環境:windows7系統、HTML5版、DELL G3電腦
html 怎麼設定文字無法選取?
控制HTML頁面內容無法選取的方法
方法有二
# 一:css 方法
user-seletct: none; -webkit-user-seletct: none; -moz-user-seletct: none; -ms-user-seletct: none;
none: 無法選取內容
text: 能選取內容
二:js 方法
document.body.onselectstart = function(){ return false; }
回傳false,不能選取
回傳true,能選取
推薦學習:《HTML5影片教學》
以上是html 怎麼設定文字無法選中的詳細內容。更多資訊請關注PHP中文網其他相關文章!