前端阻止复制
拒绝选中、全选、复制
// 如果是iframe,把document换成iframe对应的document即可
document.body.style.userSelect = 'none'; // 禁止选中
document.body.oncontextmenu = "return false"; // 禁止邮件
document.oncopy = function() { // 禁止复制
return false;
}
document.body.onselectstart = "return false;" // 禁止选择
document.onkeydown = function(event) { // 屏蔽ctrl,alt,shift
if(event.ctrlKey) return false;
if(event.altKey) return false;
if(event.shiftKey) return false;
}