Foros del Web » Programando para Internet » Javascript »

Text Box !!!

Estas en el tema de Text Box !!! en el foro de Javascript en Foros del Web. Hola... Como hago para que un text box solo acepte numeros, y no letras.? Gracias...
  #1 (permalink)  
Antiguo 27/12/2001, 11:34
 
Fecha de Ingreso: diciembre-2001
Ubicación: Peru
Mensajes: 376
Antigüedad: 22 años, 5 meses
Puntos: 0
Text Box !!!

Hola...
Como hago para que un text box solo acepte numeros, y no letras.?
Gracias
  #2 (permalink)  
Antiguo 27/12/2001, 12:19
bet
 
Fecha de Ingreso: febrero-2001
Mensajes: 292
Antigüedad: 23 años, 2 meses
Puntos: 0
Re: Text Box !!!

Algo así te sirve?
<pre>&lt;html&gt;
&lt;head&gt;
&lt;title&gt; New Document &lt;/title&gt;

&lt;script language=&quot;JavaScript&quot;&gt;
&lt;!--
var nav4 = window.Event ? true : false;

function acceptNum(evt)
{
// NOTE: Backspace = 8, Enter = 13, '0' = 48, '9' = 57
var key = nav4 ? evt.which : evt.keyCode;
return (key &lt;= 13 || (key &gt;= 48 &amp;&amp; key &lt;= 57));
}
//--&gt;
&lt;/script&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;input type=text name=&quot;valor&quot; size=12 maxlength=12 onKeyPress=&quot;return acceptNum(event)&quot;&gt;

&lt;/body&gt;
&lt;/html&gt; </pre>

<hr noshade size=1 color="#000000"><img src="http://www.gograph.com/Images-8712/ClipArt/cat03.gif" height="50" border=0 align="absmiddle"> <font size="2" face="verdana" color="#000000">bet[/CODE]
  #3 (permalink)  
Antiguo 27/12/2001, 13:49
 
Fecha de Ingreso: diciembre-2001
Ubicación: Peru
Mensajes: 376
Antigüedad: 22 años, 5 meses
Puntos: 0
Re: Text Box !!!

SI MUCHAS GRACIAS DE NUEVO....
TE LO AGRACDESCO MUCHO !!!!
:) :) :) :) :) :) :) :) :) :) :) :) :) :)
  #4 (permalink)  
Antiguo 29/12/2001, 11:33
 
Fecha de Ingreso: diciembre-2001
Ubicación: Peru
Mensajes: 376
Antigüedad: 22 años, 5 meses
Puntos: 0
Re: Text Box !!!

y como haria para que tambien solo acepte los numeros (2,3,4,5,6,7,8,9,10,11,12)??
  #5 (permalink)  
Antiguo 01/01/2002, 23:49
Avatar de urjose  
Fecha de Ingreso: diciembre-2001
Mensajes: 5.286
Antigüedad: 22 años, 4 meses
Puntos: 1
Re: Text Box !!!

donde puedo conseguir los equivalentes de las teclas pulsadas?

en este script se utilizan del 48 al 5... para los numeros pero y los demas?

salu2
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 17:36.