• 禁止复制网页内容


    做个笔记

    // 禁用右键菜单、复制、选择
    $(document).bind("contextmenu copy selectstart", function() {
        return false;
    });
    // 禁用Ctrl+C和Ctrl+V(所有浏览器均支持)
    $(document).keydown(function(e) {
        if(e.ctrlKey && (e.keyCode == 65 || e.keyCode == 67)) {
            return false;
        }
    });
    // 设置CSS禁止选择(如果写了下面的CSS则不需要这一段代码,新版浏览器支持)
    $(function() {
        $("body").css({
            "-moz-user-select":"none",
            "-webkit-user-select":"none",
            "-ms-user-select":"none",
            "-khtml-user-select":"none",
            "-o-user-select":"none",
            "user-select":"none"
        });
    });

    防止禁用JavaScript后失效,可以写在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属性 */
    }

    摘自http://www.code-life.com/?p=440
  • 相关阅读:
    python 基础2
    ffmpeg安装和录制linux桌面图像
    Python TCP Socket 传输服务器资源信息(C/S)
    ubuntu下,hue3.7编译安装,设置中文语言
    Python 图片转字符画
    Python快速教程
    spark安装部署
    python基础之文件处理
    python之路之函数
    python习题
  • 原文地址:https://www.cnblogs.com/latma/p/4164405.html
Copyright © 2020-2023  润新知