• 禁止页面被复制和禁止右键,一段样式一段JS就行了,无需复杂设定!


    群里小伙伴经常问怎么禁止页面复制和右键,其实这个问题百度一下是很多资料的,我估计小伙伴都懒,所以这里统一回复下:

    找到模板里面的</head>,在上面加如下代码就行了

    <style type="text/css">  
    body {  
        -webkit-touch-callout: none;  
        -webkit-user-select: none;  
        -khtml-user-select: none;  
        -moz-user-select: none;  
        -ms-user-select: none;  
        user-select: none;  
    }  
    </style>  
    <script langauge="javascript">  
    document.oncontextmenu=function(e){return false;}  
    </script>

  • 相关阅读:
    css gridlayout
    css position 属性
    简单的登陆界面
    introduce
    Event flow
    constructor和object的区别
    10th week (1)
    编程语言的历史和发展
    正则表达式的验证匹配
    js正则替换
  • 原文地址:https://www.cnblogs.com/lazb/p/11805091.html
Copyright © 2020-2023  润新知