我在模态对话框中使用Flash版本的Uploadify。如果在上载过程中关闭模式对话框,则会取消上载。据我所知,由于Flash的限制,上传按钮必须始终可见,才能使上传成功,因此我正在寻找一种解决方法,以便继续上传。
我尝试在模式关闭时将上传按钮移动到HTML文件的正文,但这不起作用:
function closeModal() {
$('body').append('#fileInput'); // # fileInput contains the Uploadify button
$uploadModalOuter.fadeOut(200);
}
答案 0 :(得分:1)
我想出了一个非常简单的解决方法:我现在正在修改z-index而不是隐藏模态。似乎工作得很好。
function closeModal() {
// We can't use fadeOut because it hides the Uploadify Flash button, which causes uploads to fail
$uploadModal.css("z-index", -999);
}
function openModal() {
$uploadModal.css("z-index", 999);
}