Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/08/2013, 09:11
Avatar de iukaeru
iukaeru
 
Fecha de Ingreso: mayo-2012
Mensajes: 127
Antigüedad: 12 años, 7 meses
Puntos: 12
Respuesta: Sumar valores de checkbox mostrados de una tabla

Juega con esto y creo te servirá:

<html>
<head>
<script>
var iltotal = 0;
function zuma(cual)
{
f = cual.form;
n = cual.name;
for (var i = 0, nombres = f[n] , total = nombres.length; i < total; i++)
if (f[n][i] == cual && f[n][i].checked)
var b = f[n][i].value = f.chb[i].value;

if (String(b) == "undefined")
{
b = 0;
}

iltotal = iltotal + parseInt(b);

document.getElementById("can").value = String(iltotal);
}
</script>
</head>
<body>
<form>
2000<input type="checkbox" name="chb" id="chb" value="2000" onclick="zuma(this);"/><br />
3000<input type="checkbox" name="chb" id="chb" value="3000" onclick="zuma(this);"/><br />
1000<input type="checkbox" name="chb" id="chb" value="1000" onclick="zuma(this);"/><br />
<input type="text" name="can" id="can" value="">
</form>
</body>
</html>