gpt4 book ai didi

javascript/jQuery 数组串联?

转载 作者:行者123 更新时间:2023-12-01 02:24:02 25 4
gpt4 key购买 nike

我有一些简单的 jQuery 代码:

var response = Array()
$('.task-list').each(function() {
response.concat(response,$('#' + this.id).sortable('toArray'));
}
);
console.log(response);

我遇到的问题是我认为我使用 concat 不当 - 结果是一个空数组。当我使用数组推送时,它工作正常。

最佳答案

您必须按照规范中的说明将响应设置为新形成的数组。您目前根本不使用返回值。

规范说,对于 .concat,数组不会更改,但会返回新数组:

When the concat method is called with zero or more arguments item1, item2, etc., it returns an array containing the array elements of the object followed by the array elements of each argument in order.

.push 比较,它表示当前数组已更改,并且返回了其他内容(新长度):

The arguments are appended to the end of the array, in the order in which they appear. The new length of the array is returned as the result of the call.

所以:

response = response.concat($('#' + this.id).sortable('toArray'));

关于javascript/jQuery 数组串联?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7502521/

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