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 的 jQuery-File-Upload 的问题,可以在这里找到:
blueimp 的 jQuery 文件上传
有谁知道如何通过 jQuery 设置上传目标 url 或文件夹?使用下载的 PHP 示例,您能提供一个示例吗?
非常感谢!
Blueimp 画廊插件有一个名为 main.js 的 .js 文件,只需更改此行:
$('#fileupload').fileupload({ url: 'server/php/' });
对于您先前声明的 DynamicVar:
var DynamicVar = "MyDynamic/folder"; $('#fileupload').fileupload({ url: DynamicVar });
干杯!。