美文网首页
实现网页中的文字不允许被复制

实现网页中的文字不允许被复制

作者: FSYu | 来源:发表于2020-08-04 14:56 被阅读0次

两种方法:
第一种、CSS

body{
    -moz-user-select:none; /* Firefox私有属性 */
    -webkit-user-select:none; /* WebKit内核私有属性 */
    -ms-user-select:none; /* IE私有属性(IE10及以后) */
    -khtml-user-select:none; /* KHTML内核私有属性 */
    -o-user-select:none; /* Opera私有属性 */
    user-select:none; /* CSS3属性 */
}

第二种、JS

document.body.onselectstart = document.body.ondrag = function(){
    return false;
}

转载:来源

相关文章

网友评论

      本文标题:实现网页中的文字不允许被复制

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