1. 禁止文字选中
// css设置
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
2.preventDefault
// 阻止用户复制事件
document.addEventListener('copy', function(e) {
  e.preventDefault();
});
3.禁用右键菜单
document.addEventListener('contextmenu', function(e) {
  e.preventDefault();
});
4.HTML禁用复制
<body oncopy="return false" oncut="return false;" onselectstart="return false" >