gpt4 book ai didi

javascript - 如何获取数组中每个dom元素的宽度?

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

footLinks 是通过 jquery 选择的 DOM 元素的数组。这是我正在处理的代码:

var footLinks = $('.links li');

for (var i = 0; i < footLinks.length; i++) {
var footLink = footLinks[i];
var footLinkWidth = footLink.width();
console.log('Width: ' + footLinkWidth);
}

如何获取每个元素的宽度?

最佳答案

我认为如果你这样写会更好:

$('.links li').each(function(d) {
console.log("Width: "+$(this).width())
});

关于javascript - 如何获取数组中每个dom元素的宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27836700/

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