您的位置:首页 > Web前端 > CSS

CSS禁止文字选中

2015-09-30 14:54 281 查看
-moz-user-select:none;/*firefox*/
-webkit-user-select:none;/*webkit*/
-ms-user-select:none;/*ie10*/
-khtml-user-select:none;/*早期浏览器*/
user-select:none;


IE10以下浏览器无相关css设定

//IE6-IE9
document.body.onselectstart=document.body.ondrag=function(){
return false;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: