“Haga clic en el botón Cuando presione Intro JavaScript” Código de respuesta

Haga clic en el botón Cuando presione Intro JavaScript

var input = document.getElementById("myInput");

// Execute a function when the user releases a key on the keyboard
input.addEventListener("keyup", function(event) {
  // Number 13 is the "Enter" key on the keyboard
  if (event.keyCode === 13) {
    // Cancel the default action, if needed
    event.preventDefault();
    // Trigger the button element with a click
    document.getElementById("myBtn").click();
  }
});
Maeron Reyes

En el botón Presione Presione

<input onkeyup="if(event.keyCode===13){submit.click()}"><button id="submit">submit</button>
FrostyAnimations126

Botón OnClick Ingrese la tecla

$("#id_of_textbox").keyup(function(event) {
    if (event.keyCode === 13) {
        $("#id_of_button").click();
    }
});
Ashamed Alpaca

Respuestas similares a “Haga clic en el botón Cuando presione Intro JavaScript”

Preguntas similares a “Haga clic en el botón Cuando presione Intro JavaScript”

Más respuestas relacionadas con “Haga clic en el botón Cuando presione Intro JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código