小编典典

点击下载href图片链接

html

<a href="/path/to/image"><img src="/path/to/image" /></a>在网络应用程序中生成普通链接,例如:

当我单击链接时,它将在新页面中显示图片。如果要保存图片,则需要右键单击它并选择“另存为”

我不希望这种行为,我想在单击链接时弹出一个下载框,这可能仅适用于html或javascript吗?怎么样?

如果不是,我想我将不得不编写一个download.php脚本,并以文件名作为参数将其调用到href中…?


阅读 553

收藏
2020-05-10

共1个答案

小编典典

<a download="custom-filename.jpg" href="/path/to/image" title="ImageName">
    <img alt="ImageName" src="/path/to/image">
</a>
2020-05-10