Tema: Text Box !!!
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/12/2001, 12:19
bet
 
Fecha de Ingreso: febrero-2001
Mensajes: 292
Antigüedad: 24 años
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]