我想禁用 F1 键。我尝试过这样做,但它不适用于Chrome。
document.onhelp=function() {return false;};
window.onhelp=function() {return false;};
答案 0 :(得分:4)
使用preventDefault
:
window.addEventListener("keydown",function (e) {
if (e.keyCode === 112) {
e.preventDefault();
}
})
这是简短的,但要与浏览器更兼容,check this。