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.
我使用blueimp上传器进行文件上传,我试图为一组图像获取一个唯一的ID,但我最终为每个文件上传获得了一个唯一的ID
我试图通过 handle_file_upload 函数添加它,但每次它调用它,因此每次都获得一个新的 id
任何帮助都会被感激的家伙
谢谢
只计算自己的var。不要使用函数中的索引。
var i=0; // global! .... $.each(data.files, function (index, file) { $i++; $('<p>Here is your ID:' + i+'</p>').appendTo('#container'); // e.g. ... }