gpt4 book ai didi

Javascript 从每个函数返回变量

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

使用each循环子元素。

var divHeights = [];  
$('#parent').children('div').each(function () {
divHeights.push(this.clientHeight);
});
alert(divHeights); // fails

如何返回 divHeights 变量?

我已经尝试过
var hts = ('#parent').children('div').each(function () { ...
但显然这行不通。

最佳答案

您可以使用.map()以更好的方式做到这一点喜欢:-

var divHeights = $('#parent').children('div').map(function () {
return this.clientHeight || 0;
}).get();

DEMO FIDDLE

关于Javascript 从每个函数返回变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32187284/

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