1. 程式人生 > >css控制頁面文字不能被選中user-select:none;

css控制頁面文字不能被選中user-select:none;

body{

-moz-user-select:none;/*火狐*/

-webkit-user-select:none;/*webkit瀏覽器*/

-ms-user-select:none;/*IE10*/

-khtml-user-select:none;/*早期瀏覽器*/

user-select:none;

}

user-select有2個值(none表示不能選中文字,text表示可以選擇文字)

IE6-9還沒發現相關的CSS屬性

//IE6-9

document.body.onselectstart=document.body.ondrag=function(){

returnfalse;