Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/05/2007, 09:36
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 23 años, 1 mes
Puntos: 772
Re: agregar a un campo todos los valores de un arreglo

Hola caberto

En primer lugar, no utilices Array como nombre de un array.

Prueba así:

Código:
variable = new Array();
variable[0]= 1;
variable[1]= 2;
variable[2]= 3;
valor = variable.join(';');
document.nombreFormu.nombreTxt.value = valor;
Saludos,