html [html:下载链接]通过带有下载属性的标签强制下载链接。 #html #cakephp

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html [html:下载链接]通过带有下载属性的标签强制下载链接。 #html #cakephp相关的知识,希望对你有一定的参考价值。

<!-- 
@link https://webdesign.tutsplus.com/ja/tutorials/quick-tip-using-the-html5-download-attribute--cms-23880
-->

<!-- Should be html5. -->
<a href="path/to/file.txt" download="Your Document.txt">Download Document</a>

<!-- In view on CakePHP. -->
<?php echo $this->Html->link(
  '<i class="fa fa-download"></i> Download Document',
  'path/to/file.txt',
  [
    'escape' => false,
    'download' => 'Your Document.txt',
  ]
) ?>

以上是关于html [html:下载链接]通过带有下载属性的标签强制下载链接。 #html #cakephp的主要内容,如果未能解决你的问题,请参考以下文章

如何用html实现点击一个链接,弹出一个下载的对话框,即有保存,运行,打开啥的

超链接a的download属性 实现文件下载功能

HTML链接标签<a>实现(canvas)下载

HTML链接标签<a>实现(canvas)下载

HTML下载属性更改文件名

Python 实现下载进度条(不带GUI界面)