从输入中加总多个值并在表单中选择

时间:2013-08-27 21:23:02

标签: javascript jquery

我需要对多个SELECTS和INPUTS中的值求和,这是我到目前为止所做的:

HTML

<label>Item#1</label>
<select name="price[]" id="sel_1">
    <option value="">Options</option>
    <option value="4.00">Small</option>
    <option value="8.00">Medium</option>
</select>
<br>
<label>Item#2</label>
<select name="price[]">
    <option value="">Options</option>
    <option value="4.00">Small</option>
    <option value="8.00">Medium</option>
</select>
<br>
<label>Item#3</label>
<select name="price[]">
    <option value="">Options</option>
    <option value="4.00">Small</option>
    <option value="8.00">Medium</option>
</select>
<br>
<label>Item#4</label>
<input type="checkbox" value="1.00" id="price[3]" name="price[]">
<br>
<label>Item#5</label>
<input type="checkbox" value="2.00" id="price[3]" name="price[]">
<br>
<label>Item#6</label>
<input type="checkbox" value="3.00" id="price[3]" name="price[]">
<br> <span id="usertotal"> </span>

JQUERY

$('input:checkbox').change(function () {
    var tot = 0;
    $('input:checkbox:checked').each(function () {
        tot += Number($(this).val());
    });
    tot += Number($('#sel_1').val());
    $('#usertotal').html(tot)
});

$('#sel_1').change(function () {
    $('input:checkbox').trigger('change');
});

你可以注意到它只是从第一个选择中得到的值,我需要它从所有选择中求和。

DEMO: http://jsfiddle.net/B9ufP/

2 个答案:

答案 0 :(得分:3)

试试这个:
(我简化了一下你的代码)

(function ($) {
    var $total = $('#usertotal');
    $('input,select:selected').on('change', function () {
        var tot = 0;
        $(':checked, select').each(function () {
            tot += ~~this.value;
        });
        $total.html(tot)
    });
}(jQuery))

演示 here

答案 1 :(得分:3)

如果您想要花哨,您还可以使用Array.prototype.reduce来总结这些值。

请注意,如果您有小数,请使用parseFloat

var total = [].reduce.call($('select, :checkbox:checked'), function (pv, cv) {
    return parseFloat(pv.value) + parseFloat(cv.value);
});