01/11/2006, 19:06
|
| | | Fecha de Ingreso: julio-2003
Mensajes: 1.773
Antigüedad: 21 años, 4 meses Puntos: 21 | |
quedo asi: var contenido_5_3=document.createElement("input");
contenido_5_3.type="text";
contenido_5_3.maxLength="6";
contenido_5_3.name="txprecio[]";
contenido_5_3.id="txprecio"+c;
contenido_5_3.size="8";
contenido_5_3.className="txtBoxStyle3";
contenido_5_3.onkeypress=validar;
recuerda que validar es la funcion
saludos
function validar(evt)
{
evt = (evt) ? evt : event
var key = (evt.which) ? evt.which : evt.keyCode;
if (key > 47 && key < 58 || key == 8 || key == 37 || key == 39 || key == 46 || key == 9) { return true;}
else {return false;}
}
espero te sirva de ayuda
saludos
__________________ gerardo |