css實現禁止選擇和複製

項目中可能會遇到禁止鼠標選中和複製的需求:

.noselect {

-webkit-touch-callout: none; /* iOS Safari */

-webkit-user-select: none; /* Chrome/Safari/Opera */

-khtml-user-select: none; /* Konqueror */

-moz-user-select: none; /* Firefox */

-ms-user-select: none; /* Internet Explorer/Edge */

user-select: none; /* Non-prefixed version, currently

not supported by any browser */

}

 IE < 10 Opera < 15中我們需要在需要禁止選中的元素上面添加一個屬性

unselectable="on",否則可能不會生效哦~不過現代瀏覽器如果不是非得兼容一些老的瀏覽器也可以不加。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章