uploadify [www.uploadify.com]的典型用法遵循以下模式:
// to initialize
$("#divid").uploadify({
"uploader": ...,
"script": ...,
"auto": ...,
"folder": ...,
"multi": ...,
"onSelect": function(evt, id, fileobj) {
}),
"onComplete": function(a, b, c) {
})
});
// If I need to change some setting
$("#divid").uploadifySettings({
"script", ...
});
// finally fire up file upload
$("#divid").uploadifyUpload();
现在,通过这样做,我看到[浏览]功能/功能,其中我可以浏览我将继续上传的文件。现在,我想知道是否有一种方法可以以编程方式注入文件名/文件路径[假设你有实际的路径和文件名,你不希望用户必须浏览它]。
我查看了API,但可以很好地判断它是否可行。
答案 0 :(得分:2)
您无法控制路径。 Uploadify建立在flash之上。所以你看到的是Flash文件对话。 flash documentation州:
The FileReference and FileReferenceList classes do not let you
set the default file location for the dialog box that the browse() or
download() methods generate
答案 1 :(得分:1)
不,AFAIK这是不可能的。