Ver Mensaje Individual
  #4 (permalink)  
Antiguo 23/01/2009, 10:36
Avatar de hoberwilly
hoberwilly
 
Fecha de Ingreso: julio-2008
Ubicación: Lima - Perú
Mensajes: 769
Antigüedad: 16 años, 4 meses
Puntos: 2
Respuesta: Dos casos para realizar enter

Listo el codigo quedó asi:
Código php:
Ver original
  1. <!-- <html>
  2. <head>
  3. <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
  4. <title>Formulario Logeo</title>
  5. <style type='text/css'>
  6. <!--
  7. .input_text{
  8. text-align: right;
  9. }
  10. -->
  11. </style>
  12. <script type="text/javascript">
  13. function validar(e)
  14. {
  15.     tecla = (document.all) ? e.keyCode : e.which;
  16.     if (tecla==8) return true;
  17.     patron = /\d/; // Solo acepta números
  18.     te = String.fromCharCode(tecla);
  19.     return patron.test(te);
  20. }
  21. </script>
  22. </head>
  23.  
  24. <body onLoad="document.getElementById('veni').focus();">
  25. <form name="form" method="post" action="login.php">
  26. <center>
  27. <table width="80%" border="1" cellpadding=10 align="center">
  28. <tr>
  29. <td align="center">Ingrese D.N.I.:</td>
  30. <td align="center"><input type="text" name="dni" id="veni" size='18' maxlength='8' class="input_text" onKeypress="return validar(event)"></td>
  31. </tr>
  32. <tr>
  33. <td align="center" colspan="2"><input type="submit" name="submit" value="ENVIAR"  accesskey="E"></td>
  34. </tr>
  35. </table>
  36. </form>
  37. </body>
  38. </html>
  39.  -->
Pero queda pendiente:
1. "...pero una consultita como imprimir el value"ENVIAR" de la sgte manera:"ENVIAR" ... "
2. "...el único problema es que estás anulado esa tecla ..." igualmente se esta anulando para este nuevo js, como modificarlo???

Gracias,