0

我正在尝试实现 shift8creative 的敏捷上传器。在适当的浏览器中一切正常,但即导致问题。

该页面在这里:https ://www.postadigi.com/pages/upload-order

js错误突出显示的行在这里:

document.getElementById('agileUploaderSWF').sendForm();

我试过把它放在一个 onclick 中,一个 jquery 点击函数。同样的错误。

NB, it compresses & uploads a first image fine, but then when a second image is selected and upload clicked, it fails.

4

2 回答 2

0
document.getElementById('agileUploaderSWF').sendForm();
于 2010-12-02T05:38:21.543 回答
0

好的,修好了。

Internet Explorer 正在缓存 swf 数据,如下所述:

http://www.permadi.com/tutorial/flashcache/index.html

因此,感谢 Richard Grove 关于插件评论的提示,我用一些技巧修复了它:

flashSrc: '/js/uploader/agile-uploader.swf?' + 数学随机(),

这似乎已经说服 ie 不要缓存它。

于 2010-12-02T23:09:41.113 回答