我有一个简单的代码来下载简单的gif图像。
<a href="file://<path_to_gif>/screenshot.gif" download > <button >Download Source Code</button></a>
以上代码在Windows中的chrome浏览器中运行顺畅。但是相同的代码在Mac中不起作用。如果是Mac,我应该将代码更改为
<a href="smb://<path_to_gif>/screenshot.gif" download > <button >Download Source Code</button></a>
如何在不使用文件系统的情况下确保可以下载它?
答案 0 :(得分:1)
将文件本地添加到您的站点,这样您就可以使用您页面的绝对路径。
e.g。
images/
index.html
index.html = "images/mygif.gif"