如何使用 jQuery 检测键盘上按下回车键?


要检测键盘上按下回车键,请使用包含 keyCode 的 keyup() 函数。你可以尝试运行以下代码以了解如何使用 jQuery 检测键盘上按下回车键 -

示例

动态演示

<html>
   <head>
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
      <script>
         $(document).ready(function(){
         $('textarea').bind("enterKey",function(e){
         alert("You have pressed Enter key!");
      });
      $('textarea').keyup(function(e){
         if(e.keyCode == 13)
         {
            $(this).trigger("enterKey");
         }
      });
   });
   </script>
   </head>
<body>
   <p>Press Enter below</p>
   <textarea rows="2" cols="20">
   </textarea>
</body>
</html>

按下以下回车键

更新于: 2020 年 6 月 20 日

309 次浏览

开启你的职业生涯

完成课程,获得认证

开始
广告