“Botão OnClick Entre a tecla” Respostas de código

clique no botão quando pressione Enter 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

Pressione o botão Enter

searchInput.onkeyup = function (e) {
    if (e.key === 'Enter') {
        searchBtn.click();
    }
}
Arno Deceuninck

Botão OnClick Entre a tecla

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

Respostas semelhantes a “Botão OnClick Entre a tecla”

Perguntas semelhantes a “Botão OnClick Entre a tecla”

Mais respostas relacionadas para “Botão OnClick Entre a tecla” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código