Anular tecla enter en formulario
Tengo un formulario y cuando el usuario teclea enter para pasar de un campo a otro, este se envía. Para evitar esto utilizo el siguiente script:
<SCRIPT>
function getKey(keyStroke) {
isNetscape=(document.layers);
eventChooser = (isNetscape) ? KeyStroke.which : event.keyCode;
if (eventChooser==13) {
return false;
}
}
document.onkeypress = getKey;
</script>
Funciona bien... Queda anulada la tecla enter
pero tengo un campo de texto el cual si debe utilizar enter para pasar de linea a linea.
¿Cómo hago para habilitar la tecla ENTER cuando llegue al campo de texto?
<SCRIPT>
function getKey(keyStroke) {
isNetscape=(document.layers);
eventChooser = (isNetscape) ? KeyStroke.which : event.keyCode;
if (eventChooser==13) {
return false;
}
}
document.onkeypress = getKey;
</script>
Funciona bien... Queda anulada la tecla enter
pero tengo un campo de texto el cual si debe utilizar enter para pasar de linea a linea.
¿Cómo hago para habilitar la tecla ENTER cuando llegue al campo de texto?
1 respuesta
Respuesta de krlosnow
2