JS禁止右键,F12,拖动,复制文本,选中文本......


document.ondragstart = document.onselectstart = function(){return false;};
document.oncontextmenu = function(){return false};

CSS禁止选中文字

body{
    moz-user-select: -moz-none; 
    -moz-user-select: none; 
    -o-user-select:none; 
    -khtml-user-select:none; 
    -webkit-user-select:none; 
    -ms-user-select:none; 
    user-select:none;
}

禁止鼠标左右键


禁止选择文本


禁止另存为


屏蔽F12审查元素,但是屏蔽不掉“设置-开发者工具”


你可能感兴趣的:(JS禁止右键,F12,拖动,复制文本,选中文本......)