Нажмите клавишу «ENTER» внутри поля ввода, чтобы активировать кнопку:
[html]<script type="text/javascript">
// Get the input field
var input = document.getElementById("myInput");
// Execute a function when the user releases a key on the keyboard
input.addEventListener("keyup", function(event) {
// Cancel the default action, if needed
event.preventDefault();
// Number 13 is the "Enter" key on the keyboard
if (event.keyCode === 13) {
// Trigger the button element with a click
document.getElementById("myBtn").click();
}
});</script>[/html]
// Get the input field var input = document.getElementById("myInput"); // Execute a function when the user releases a key on the keyboard input.addEventListener("keyup", function(event) { // Cancel the default action, if needed event.preventDefault(); // Number 13 is the "Enter" key on the keyboard if (event.keyCode === 13) { // Trigger the button element with a click document.getElementById("myBtn").click(); } });
- Подпись автора