var imgLink = ['ONYX', 'Bristol_Blue_B_002_10', 'Oakhampton_B_001_10-1', 'Quartet_KitchenCountertop_500x342', 'Eternal-Serena_RS11277_Silestone-Kitchen', 'zodiaq_provence_kitchen_2200x1467-b94f5-1', 'Eternal-Serena_RS11277_Silestone-Kitchen-1', 'Ecobycosentino-', 'Hanstone', 'IceStone-Forest-Fern-Shadowlight-Vignette-Kitchen-Countertop', 'RS833_Silversilk_OA-hpr-copy_CMYK', 'scalea'];

    var imgArray = [];

jQuery.each(imgLink, function(i){
    var img = jQuery('<img/>')

    .attr("src", "http://www.link.com/wp-content/uploads/2017/10/" +imgLink[i]+ ".jpg")
    imgArray.push(img[i]);
});
console.log(imgArray);

您好,大家好,我上面有一个代码,我的目标是制作带有属性的数组图像,但是现在的结果是

javascript - jQuery数组迭代与图像-LMLPHP

JSFiddle

有人可以告诉我我在做什么错,谢谢!

最佳答案

你有错字

imgArray.push(img[i]);

应该:
imgArray.push(img); // <-- img is not an array

09-11 08:16