在本文中,我们将学习如何定义超链接将导致下载而不是在 HTML5 中单击时导航到它。这可用于在单击链接时需要下载内容的情况,例如文本文件或图像托管服务。
方法:
元素有一个属性download ,用于指定是否使用超链接下载链接的资源,即使用href属性指定的值,而不是导航到它。它有一个可选值,可用于指定要下载的文件的名称。如果未使用此值,则将使用原始文件名。
句法:
以下示例说明了用于指定要下载的目标的下载属性。
例子:
HTML
GeeksforGeeks
How to define that a hyperlink will
lead to a download instead of navigating
to it when clicked in HTML5?
The below links demonstrate the different
links from which the text file may be
viewed or downloaded.
View Link
Download Link
Download Link with custom name
The below links demonstrate the different
links from which the image file may be
viewed or downloaded.
View Link
Download Link
Download Link with custom name
输出: