CSS禁止文字選擇user-select應用

字號:


    user-select有兩個值:
    none:用戶不能選擇文本
    text:用戶可以選擇文本
    需要注意的是:user-select并不是一個W3C的CSS標準屬性,瀏覽器支持的不完整,需要對每種瀏覽器進行調整
    代碼如下:
    body{
    -moz-user-select: none; /*火狐*/
    -webkit-user-select: none; /*webkit瀏覽器*/
    -ms-user-select: none; /*IE10*/
    -khtml-user-select: none; /*早期瀏覽器*/
    user-select: none;
    }
    IE6-9還沒發(fā)現(xiàn)相關的CSS屬性
    代碼如下:
    //IE6-9
    document.body.onselectstart = document.body.ondrag = function(){
    return false;
    }