如何在 HTML 中指定当用户点击超链接时下载目标文件?
使用 download 属性将文件设置为在点击超链接时下载。将该属性的值设置为下载文件的名称,例如图像。
示例
<!DOCTYPE html> <html> <body> <h3>if statement in Java</h3> <p>The following is an image explaining the concept if <b>if-statmement in Java</b> (Click to download):<p> <a href = "https://tutorialspoint.com/java/images/if_statement.jpg" download> <img border = "0" src = "https://tutorialspoint.com/java/images/if_statement.jpg" alt="Java" width="400" height="450"> </a> </body> </html>
查看广告