I want to get the total value of all checked checkboxes. What i've tried is this:
$("input[type=checkbox]:checked").each(function() {
total_modules += parseFloat($(this).val());
});
$("#total_modules").text(total_modules.toFixed(2));
This didn't work.
I hope someone can help me.
Thanks in advance!
PS: I fixed it, this is my new code:
function calculation()
{
$("input[type=checkbox]:checked").each(function() {
total_modules += parseFloat($(this).val());
});
$("#total_modules").text(total_modules.toFixed(2));
}
calculation();
$("input[type=checkbox]").click(function()
{
calculation();
});
Thank you all
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…