通过每个函数求和动态值

时间:2016-06-29 12:54:31

标签: jquery

我想计算文本字段的总和(可以是3或2等)值。

以下是我正在使用的代码:

$(document).ready(function() {
    $('[id^="revenue-"]').on('input', function() {
        var id = $(this).attr("id");
        var bpid = id.replace("revenue", "basepoint");
        var bpvalue = 0;
        $('#' + bpid).each(function() {
            var bp_id = $(this).attr("id");
            console.log("begin: " + bpvalue); * * // it gives me undefined on console**
            var bpvalue = bpvalue + Number($('#' + bp_id).val());
            $('#totalbasepoint').val((bpvalue).toFixed(2)); * * // thus here value is NaN**
        });

    });
});

我做错了什么?

0 个答案:

没有答案