Ver Mensaje Individual
  #4 (permalink)  
Antiguo 25/05/2014, 18:45
Avatar de Folken453
Folken453
 
Fecha de Ingreso: mayo-2014
Mensajes: 1
Antigüedad: 10 años, 5 meses
Puntos: 0
Respuesta: Suma automatica

Hola Soy nuevo. Aqui creo tener tu solucion, hice un ejercicio casi igual aqui te dejo para que lo revises
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<style type="text/css">
#form1 table tr td strong {
font-family: Arial, Helvetica, sans-serif;
}
#form1 table tr td {
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}

</style>
<script type="text/javascript">

function sumar()
{
var numero1 = parseFloat(document.form1.uno.value);
var numero2 = parseFloat(document.form1.dos.value);
var Resultado = numero1 * numero2;
document.form1.res.value= Resultado;
}
</script>
</head>

<body>
<form id="form1" name="form1" method="post" action="">
<table width="400" align="center" >
<tr>
<td>
Ingresa un numero:
</td>
<td><input type="checkbox" id="che" name="che" value="checkbox" onclick="document.form1.uno.disabled =! document.form1.uno.disabled" /><input type="text" name="uno" id="uno" onkeyup="sumar()" value="1" placeholder="Ingrese cantidad" disabled /></td>
</tr>
<tr>
<td>Ingresa el segundo numero</td>
<td><input type="checkbox" id="che2" name="che2" value="checkbox" onclick="document.form1.dos.disabled =! document.form1.dos.disabled" /><input type="text" name="dos" id="dos" onkeyup="sumar()" placeholder="Ingrese cantidad"disabled/></td>
</tr>
<tr>
<td>Resultado</td>
<td><input type="text" name="res" id="res" value="$00.00" /></td>
</tr>
</table>
</form>
</body>
</html>