Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有从数据库中获取的图像。我需要得到他们每个人的高度。如果我这样做:
$('.find_image_height').height();
我采用第一个图像高度,我该怎么做。(他们排列,当然,会帮助我)
function getHeights() { var heights = []; $(".find_image_height").each(function(){ heights.push($(this).height()); }); return heights; }
您可以使用.map:
$(function() { var array = $(".find_image_height").map(function() { return $(this).height(); }).get(); });
这是一个要演示的小提琴。