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.
使用 Uploadify 3.2,有没有办法检查上传队列中是否存在项目?我在网上搜索的大多数方法似乎不再适用于最新版本。
好的,我设法自己使用 jquery 解决了这个问题。我只是计算了队列的子节点数量,并使用该数字来确定项目是否已上传到队列中。
我的代码最终类似于这个......
if ($("#upload-queue > div").size() == 0) { // the queue is empty }