In the Javascript code below (I did not use jQuery), there are two events: one to detect the key at the moment the value is entered in input
, and another to detect the click on the "Submit" button.
HTML:
<form method="get">
<input type="text" id="meu-input" />
<input type="submit" id="meu-submit" value="Enviar" />
</form>
Javascript:
// Função que mostra o valor do input num alert
function mostrarValor() {
alert(document.getElementById("meu-input").value);
}
// Evento que é executado toda vez que uma tecla for pressionada no input
document.getElementById("meu-input").onkeypress = function(e) {
// 13 é a tecla <ENTER>. Se ela for pressionada, mostrar o valor
if (e.keyCode == 13) {
mostrarValor();
e.preventDefault();
}
}
// Evento que é executado ao clicar no botão de enviar
document.getElementById("meu-submit").onclick = function(e) {
mostrarValor();
e.preventDefault();
}
jsFiddle Example