如何处理 JavaScript 弹出窗口上的 ESC 键按下?

我们知道 ESC 的键码是 27。如果您使用键码 27,那么您可以处理这种情况。

示例

以下是代码 -

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title>Document</title>
</head>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script xx_src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script xx_src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet" />
<body>
</body>
<script>
   $(document).keydown(function (eventValue) {
      if (eventValue.keyCode == 27) {
         console.log("ESC 键被按下......");
      }
      else {
         console.log("其他的是按键....")
      }
   });
</script>
</html>

要运行上述程序,请保存文件名“anyName.html(index.html)”。右键单击该文件,然后在 VS Code 编辑器中选择“使用 Live Server 打开”选项。

输出结果

这将产生以下输出 -

现在我要按除 ESC 键之外的另一个按钮。

输出结果

这将在控制台上产生以下输出 -

现在,我要按 ESC 键。控制台输出会改变 -