Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/04/2008, 08:49
quimfv
Colaborador
 
Fecha de Ingreso: marzo-2008
Ubicación: Sabadell
Mensajes: 4.897
Antigüedad: 16 años, 8 meses
Puntos: 574
Re: asignar valor

Código:
function hores_previstes()
{
var hores=8*(365-(52*2)-22-11);
document.form0.hores.value=hores;

}
Suponiendo que el form se llama form0 y el imput hores (name).

o

Código:
function hores_previstes()
{
var hores=8*(365-(52*2)-22-11);
document.getElementById('hores').value=hores;

}
donde 'hores' es el id del imput.

Quim