Detailed explanation of html download function

Detailed explanation of html download function

The new project has basically come to an end. It was the first time I completed the integration of front-end and back-end separation, and naturally I encountered many pitfalls.

Let’s talk about one of the pitfalls I encountered on the first day.

——About downloading issues. . .

In the past, everyone liked to use the <a></a> tag. At the beginning, I also used the a tag and placed the href attribute in the address of the picture to simulate the download function. It turns out that this damn thing, when you click on it, it directly opens a new picture, it doesn't mean downloading.

Then, I read an article, which opened the door to a new world for me.

download attribute

The <a> tag must have an href attribute. The browser will automatically detect the correct file extension and add it to the file (.img, .pdf, .txt, .html, etc.).

For example, let's take an example:

<a href="ccc.jpg" download>

You can also customize the downloaded file name.

<a href="ccc.jpg" download=" wageSoCute .jpg">

But in fact, this method also has great limitations.

One is its compatibility, according to data provided by W3C.

It seems that the practicality of this attribute is actually average for the time being.

There is another pitfall that I haven't encountered yet, which is the cross-domain issue. I will update it after I encounter it. .

In conclusion, this download is a good thing, but it seems that the support is not very good . I wonder how it will develop in the future. After all, it is still a new attribute of the a tag. Let's wait and see. At least we know that there is such a thing.

The above detailed explanation of the html download function is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

Original URL: http://www.cnblogs.com/w-age666/archive/2016/05/04/5458342.html

<<:  MySQL transaction isolation level details

>>:  Drop-down menu implemented by HTML+CSS3+JS

Recommend

How to check the version of Kali Linux system

1. Check the kali linux system version Command: c...

MySQL can actually implement distributed locks

Preface In the previous article, I shared with yo...

React implementation example using Amap (react-amap)

The PC version of React was refactored to use Ama...

Implementation ideas for docker registry image synchronization

Intro Previously, our docker images were stored i...

JavaScript canvas realizes the effect of nine-square grid cutting

This article shares the specific code of canvas t...

VMware virtual machine to establish HTTP service steps analysis

1. Use xshell to connect to the virtual machine, ...

mysql charset=utf8 do you really understand what it means

1. Let's look at a table creation statement f...

Steps for Django to connect to local MySQL database (pycharm)

Step 1: Change DATABASES in setting.py # Configur...

Specific use of Bootstrap5 breakpoints and containers

Table of contents 1. Bootstrap5 breakpoints 1.1 M...

Detailed graphic explanation of mysql query control statements

mysql query control statements Field deduplicatio...

Detailed explanation of Nodejs array queue and forEach application

This article mainly records the problems and solu...

MySQL cursor detailed introduction

Table of contents 1. What is a cursor? 2. How to ...

Detailed explanation of MySQL master-slave replication and read-write separation

Table of contents Preface 1. Overview 2. Read-wri...

How to solve the error "ERROR 1045 (28000)" when logging in to MySQL

Today, I logged into the server and prepared to m...