window.document.body.onkeydown = function (e) {
//MSIE
if (window.event) {
//only allow ctrl+c,ctrl+f,ctrl+v,ctrl+x,ctrl+z
if ((event.ctrlKey && e.which < 100) && (event.ctrlKey && (e.which != 67 && e.which != 70 && e.which != 86 && e.which != 88 && e.which != 90))) {
//alert("The CTRL key + F was pressed!");
event.stopPropagation();
event.preventDefault();
}
}
//firefox && chrome
else {
key = e.which;
//only allow ctrl+c,ctrl+f,ctrl+v,ctrl+x,ctrl+z
if ((e.ctrlKey && e.which < 100) && (e.ctrlKey && (e.which != 67 && e.which != 70 && e.which != 86 && e.which != 88 && e.which != 90))) {
e.stopPropagation();
e.preventDefault();
}
}
}
Я думаю, что эти коды могут вам помочь.