How to detect whether the user has pressed 'Enter key' using jQuery
- جي كويري
- 2021-09-15
- mhanasmh00489829403
الأجوبة
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!');
}
});
القوائم الدراسية التي ينتمي لها السؤال
معلومات ذات صلة