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.
我在这里找到了一个非常好的上传脚本:http: //valums.com/ajax-upload/ 但是,我希望能够限制所有文件的总上传大小。它可以让我限制单个尺寸,但是有没有办法限制所有尺寸的总和?例如,如果我将单个最大大小限制为 10MB,我可以上传 20 个 9.8 MB 的文件。只要所有文件的总大小不超过 10 MB,我希望能够让文件成为他们想要的任何大小。这可能吗?
我自己找到了解决方案。我在顶部放了一个总大小变量,每次都将文件大小添加到总大小变量中,然后我检查了一下。