我想像这样进行链接下载
http://idwallpaper.com/download.php?image_id=1517
我已尝试过像这样的其他教程
<script>
function SaveFile(fname){
img.document.execCommand('saveas', null ,fname)
}
</script>
<iframe id="img" src="myimage.jpg" width="(image width + 20)px" height="(image height + 25)px" scrolling="no" frameborder="0px"></iframe>
<button onclick="SaveFile('myimage.jpg');">save as</button>
虽然在FireFox中不起作用.....
答案 0 :(得分:1)
<a href="myimage.jpg">Save As</a>
加上Content-Disposition
标题,将其设置为附件。如果您使用Apache,则可以调整this PDF example。