document.oncontextmenu = function() {
return false;
}
document.onkeydown = function() {
if (event.ctrlKey && window.event.keyCode == 67) {
return false;
}
}
document.body.oncopy = function() {
return false;
}
document.onselectstart = function() {
//return false;
}
转载于:https://my.oschina.net/ChinaKingM/blog/903694