所以我有一个网站,我正在寻找一种方法,当用户按下 Esc 键时将用户重定向到另一个网页。
答案 0 :(得分:3)
您可以使用keydown事件并捕获event.keyCode,如果它是=== 27(esc),则发出重定向。像这样:
document.body.addEventListener("keydown", function (event) {
if (event.keyCode === 27) {
window.location.replace("/*your url here*/");
}
});
答案 1 :(得分:0)
对ESC键使用键码27。有关详细信息,请参阅以下答案。 How to detect escape key press with JavaScript or jQuery?