gpt4 book ai didi

javascript - 如何仅返回列表的单个值并将其添加到特定的 html 元素?

转载 作者:行者123 更新时间:2023-11-28 10:48:35 25 4
gpt4 key购买 nike

我有另一个程序员提供的脚本,该脚本将列表返回给 html。我怎样才能只返回单个值然后将它们添加到 html 中?

$scope.getResult = function() {
$scope.result = [];

PAPFields.forEach( function( field ) {
var name = field[ field.length - 1 ];
$scope.result.push( [ field[ 0 ], name, +window[ name ] ] );
} );
};

最佳答案

Please use for() instead of forEach

$scope.getResult = function() {
$scope.result = [];
for(var i = 0; i < PAPFields.length; i++){
var name = PAPFields[i][ field.length - 1 ];
$scope.result.push( [ PAPFields[i][ 0 ], name, +window[ name ] ] );
}
};

关于javascript - 如何仅返回列表的单个值并将其添加到特定的 html 元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38511940/

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