Use href in html to pop up a file download dialog box when clicking a link

Use href in html to pop up a file download dialog box when clicking a link
I learned a new trick today. I didn’t know it before because I have done too little...

Objective: Click on the link to pop up a file download dialog box Code:

Copy code
The code is as follows:

<html>
<head>Code Download</head>
<title>Code Download</title>
<body>
<a href="Web.rar" >download</a>
</body>
</html>

If the browser supports a format that can be opened, it will open it directly online by default (such as word or pictures). If it does not support the format, it will pop up a download prompt. It is best to make it into a .rar file

<<:  Detailed explanation of the difference between IE8 compatibility view (IE7 mode) and standalone IE7

>>:  How to automatically back up the mysql database regularly

Recommend

Examples of preview functions for various types of files in vue3

Table of contents Preface 1. Preview of office do...

Using JS timer to move elements

Use JS timer to make an element to make a method ...

Solution to mysql error when modifying sql_mode

Table of contents A murder caused by ERR 1067 The...

js to realize payment countdown and return to the home page

Payment countdown to return to the home page case...

Detailed explanation of common usage of pseudo-classes before and after in CSS3

The before/after pseudo-class is equivalent to in...

Solution to the failure of entering the container due to full docker space

Since the problem occurred rather suddenly and th...

How to install golang under linux

Go is an open source programming language that ma...

Write your HTML like this to make your code more compatible

For example, users who need screen reading softwar...

How to configure multiple tomcats with Nginx load balancing under Linux

The methods of installing nginx and multiple tomc...

JavaScript canvas Tetris game

Tetris is a very classic little game, and I also ...

How to start Vue project with M1 pro chip

Table of contents introduction Install Homebrew I...

MySQL query_cache_type parameter and usage details

The purpose of setting up MySQL query cache is: C...

vue front-end HbuliderEslint real-time verification automatic repair settings

Table of contents ESLint plugin installation in H...

CSS beginner tutorial: background image fills the entire screen

If you want the entire interface to have a backgr...

Detailed explanation of how to adjust Linux command history

The bash history command in Linux system helps to...