美文网首页
禁用浏览器长按粘贴复制

禁用浏览器长按粘贴复制

作者: 萤火虫de梦 | 来源:发表于2018-03-30 15:46 被阅读226次
*{   
    -webkit-touch-callout:none;  /*系统默认菜单被禁用*/   
    -webkit-user-select:none; /*webkit浏览器*/   
    -khtml-user-select:none; /*早期浏览器*/   
    -moz-user-select:none;/*火狐*/   
    -ms-user-select:none; /*IE10*/   
    user-select:none;   
} 

上面的代码会连input输入都会禁用掉,所以要排除input

*:not(input){   
    -webkit-touch-callout:none;  /*系统默认菜单被禁用*/   
    -webkit-user-select:none; /*webkit浏览器*/   
    -khtml-user-select:none; /*早期浏览器*/   
    -moz-user-select:none;/*火狐*/   
    -ms-user-select:none; /*IE10*/   
    user-select:none;   
} 

相关文章

网友评论

      本文标题:禁用浏览器长按粘贴复制

      本文链接:https://www.haomeiwen.com/subject/vbeicftx.html