如何使用 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>
按下以下回车键
广告