gpt4 book ai didi

JQuery 数组逗号分隔值之和

转载 作者:行者123 更新时间:2023-12-01 03:37:23 26 4
gpt4 key购买 nike

以下是数组(id,num1,num2,qty)中的数据。

1,500,1000,1
2,700,1200,1
3,900,1400,1

如何求和并显示以下数据?

500 + 700 + 900
1000 + 1200 + 1400

Result 2100 3600

这就是我到目前为止所拥有的......

var allItems = [];

function calcWattage() {
allItems = [];
$(".cbx").each(function(){
if($(this).is(":checked"))
allItems.push(this.id + "," + ($(this).val()) + "<br />");
});
$("#result").html(allItems.join(""));
}

最佳答案

您可以使用Array.reduce()喜欢

var array = [
[1, 500, 1000, 1],
[2, 700, 1200, 1],
[3, 900, 1400, 1]
];

var result = array.reduce(function(value, array) {
value[0] += array[1];
value[1] += array[2];
return value;
}, [0, 0]);
console.log(result)

关于JQuery 数组逗号分隔值之和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30283971/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com