点击下载href图片链接

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

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

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

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

回答:

<a download="custom-filename.jpg" href="/path/to/image" title="ImageName">

<img alt="ImageName" src="/path/to/image">

</a>

以上是 点击下载href图片链接 的全部内容, 来源链接: utcz.com/qa/407529.html

回到顶部