我的值数组以 [100,200,300,500] 的形式正确返回我只想总结这些值,我做错了什么?
jQuery
$('select').focus(function () {
previous = parseInt($(this).val());
}).change(function() {
var item_cost = parseInt($(this).attr('cost'));
values = $.map($('select[name="cookies"]'), function (e) {
return $(e).val()* item_cost;
for (var i = 0; i < values.length; i++) {
total += parseInt(values[i]);
console.log(total);
}
});
alert(values);