Crow:设置网站的index.html-CSDN博客
讲述了如何完成一个最简单的网页的路由
很多网页提供了下载功能,怎么实现呢,其实也很简单。
假设网页的目录结构如图文章来源:https://www.toymoban.com/news/detail-812280.html
$ tree static
static
├── img
│ └── goodday.jpg
└── index.html文章来源地址https://www.toymoban.com/news/detail-812280.html
//index.html
<html>
<body>
<h1>Hello world</h1>
<img src="/static/img/goodday.jpg" alt="good day" style="width: 500px;" onclick="downloadimg('goodday1.jpg')">
<script>
function downloadFile (data, fileName)
{
var blob = new Blob([data]);
var downloadElement = document.createElement('a');
var href = window.URL.createObjectURL(blob);
downloadElement.href = href;
到了这里,关于Crow:实现点击下载功能的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!