How to detect whether the user has pressed 'Enter key' using jQuery

  • جي كويري

How to detect whether the user has pressed 'Enter key' using jQuery.

الأجوبة

HTML Code :

<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-git.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Detect pressing Enter key on keyboard using jQuery.</title>
</head>
<body>
<p>Input a value within the textbox and press Enter</p>
 <form>
 <input type="text" id="hello"></p>
 </form>
 </body>
 </html>

JavaScript Code:

$(document).keypress(function(e) {
    if(e.which == 13) {
        console.log('You pressed enter!');
    }
});
هل كان المحتوى مفيد؟

معلومات ذات صلة

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...