Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/07/2007, 08:36
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 10 meses
Puntos: 772
Re: operaciones matemáticas

Hola chiquirf

Te pongo un pequeño ejemplo, no te costará mucho completarlo:

Código PHP:
<html>
<
head>
<
script type="text/javascript">
function 
calcular(frm) {
  
ho parseFloat(frm.horas.value);
  
ph parseFloat(frm.precioHora.value);
  
to ho ph;
  
frm.total.value to;
}
</script>
</head>
<body>
<form action="javascript:alert('si')" onsubmit="calcular(this)">
<input type="text" name="horas" />
<input type="text" name="precioHora" />
<input type="text" name="total" readonly = "readonly" />
<input type="submit" />
</form>
</body>
</html> 
Saludos,