gpt4 book ai didi

javascript - 为什么我的 javascript 函数只返回数组的第一项?

转载 作者:行者123 更新时间:2023-11-28 17:55:53 24 4
gpt4 key购买 nike

我是 Javascript 的新手,正在尝试使用它。

我写了2个函数。

第一个函数返回一个数字数组,第二个函数循环遍历它并对数组求和,但它只返回数组的第一项。为什么 ?

function addWorth()
{


var table1= document.getElementById("tableNetWorths");

var rowCount1= table1.rows.length;

//var row1= table1.insertRow(rowCount1);


var arr= [];


for(var count = 0; count < rowCount1; count++)
{
arr.push(table1.rows[count].cells[1].innerHTML);
}


arr.shift();
return arr;

}

function showWorthSum()
{
var returnedArr= [];

returnedArr.push(addWorth());

totalWorth= 0;

var arrCount= returnedArr.length;

for(var count = 0; count < arrCount; count++)
{
totalWorth= parseInt(totalWorth)+ parseInt(returnedArr[count]);

}

return parseInt(totalWorth);
}

按钮:

 <button class="btn btn-primary" onclick="document.write(showWorthSum())" type="button">Show Sum</button>

数组:

100,200,344,22,122,99

最佳答案

这应该可以解决问题:

var returnedArr = addWorth();

关于javascript - 为什么我的 javascript 函数只返回数组的第一项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44466879/

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