0

我试图在我的网页上包含 downloadify javascript+flash 插件,但不知何故“保存到磁盘”按钮不可见。

工作演示: http: //pixelgraphics.us/downloadify/test.html

我的页面:http ://www.javaexperience.com/Feedback/index.html

有人可以指出我可能会错过的东西吗

4

1 回答 1

2

我猜您通往swforimage资产的路径是错误的。

从 github 页面:

swf: ‘media/downloadify.swf’ Required 
Path to the SWF File. Can be relative from the page, or an absolute path.

downloadImage: ‘images/download.png’ Required 
Path to the Button Image. Can be relative from the page or an absolute path.

您的示例完全复制了这些路径的工作示例。

你的:

media/downloadify.swf
queue_name=downloadify_1361560979222&width=100&height=30&downloadImage=images/download.png

他们的:

media/downloadify.swf
queue_name=downloadify_1361561050132&width=100&height=30&downloadImage=images/download.png

我敢打赌,这些资产不在您服务器上的同一位置。否则,您的下载对象就在那里并且应该可以工作。

于 2013-02-22T19:30:52.127 回答