我想要数组数组。
我的代码:
image_data = $('.post-entry').map(function() {
return $(this).find('img').map(function() {
var self = $(this);
return {
big: self.hasClass('big') || self.hasClass('medium'),
offset: self.offset(),
width: self.width(),
height: self.height()
};
}).get();
}).get();
但是当我有两个 post-entry 元素并且每个元素都有 4 个图像时,我有 8 个图像的数组。我怎样才能得到两个元素的数组,每个元素有 4 个元素?为什么我有平面阵列?