0
我使用Jquery File Upload插件將圖像上傳到雲(Cloudinary)。 Cloudinary提供幫助我可以使用從雲中獲取這些圖像。我想用這個幫手將圖像追加到列表中,但不知何故圖像不在列表中(查看屏幕截圖),我不知道爲什麼。我跑出了這些想法,需要你的幫助。請提出如何將圖像添加到li?Jquery文件上傳將圖像追加到列表
下面是我如何做到這一點:
var preview = $('.uploaded_image ul').append('<li></li>');
$.cloudinary.image(data.result.public_id, {format: data.result.format, width: 250, height: 135, crop: "fill"}).appendTo(preview);
()