<html>
<body>
<script type="text/javascript">
// Capturo Enter
document.onkeypress=function(e){
var esIE=(document.all);
tecla=(esIE) ? event.keyCode : e.which;
return (tecla!=13);
};
</script>
<form name="form" action="http://www.w3schools.com/">
<table>
<tr>
<td> Ingrese un campo </td>
<td><input type="text" name="entrada" /></td>
</tr>
<tr>
<td><input type="button" name="Aceptar" value="Aceptar" onclick='javascript:submit()'/></td>
</tr>
</table>
</form>
</body>
</html>
Como siempre, pueden probar este codigo en http://www.w3schools.com/js/tryit.asp?filename=tryjs_intro.
gracias me sirvio de mucho saludos
ResponderEliminar