javascript - simular - detectar tecla pulsada jquery
Detectar la tecla enter presionada usando javascript (1)
var code = (e.keyCode ? e.keyCode : e.which);
if(code == 13) { //Enter keycode
alert(''enter press'');
}
Posible duplicado:
Clave de captura de Javascript
Estoy trabajando en la función de respuesta usando mysql y php.
Mi db de MySQL:
reply:
rid - id;
topicid - under which topic;
uid - id of the guy who replies;
content - what did the guy said.
Aquí está mi código html:
<form id="replyform">
<textarea name="rplcont" placeholder="Press enter to submit your reply."><textarea>
</form>
Mi pregunta es: ¿Cómo puedo saber si se presiona el botón Intro?
Muchas gracias.
/ ---------------------------------------------- /
Aquí están mis códigos que funcionan:
html:
<textarea id="reply" name="reply" onKeyPress="enterpressalert(event, this)"></textarea>
js
function enterpressalert(e, textarea){
var code = (e.keyCode ? e.keyCode : e.which);
if(code == 13) { //Enter keycode
alert(''enter press'');
}
}
y funciona.
Gracias por todos los que se ocupan de este tema!