如何使用 jQuery 检测键盘上的回车键?
为了检测键盘的回车键,使用 keup() 函数,并附带 keyCode。你可以尝试运行以下代码来了解如何使用 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>
在下方按下回车键
广告