The problem of two requests when the src attribute value of the img tag is empty (non-IE browser)

The problem of two requests when the src attribute value of the img tag is empty (non-IE browser)
When the img src value is empty, two requests are made. Some students may have encountered similar situations before. When there is a tag like <img src=''>, an extra request will be made to the page.
Based on the analysis of an article, I guess that all tags that actively introduce external files will have this problem, such as embed, link, etc.
Therefore, it was verified by experiment.
The following are preliminary conclusions :
Tags/Requests/Browser IE FF, Safari, Chrome
Img 2 2
Embed 1 2
Background: url 1 2
Link 1 2
Input type='image' 2 2
Script 1 2
bgsound 2

Note :
1. For the two requests of IE and Firefox, the pages they request are different.
IE: The request is for the directory where the accessed file is located, such as the img tag, the second request is http://www.xxxx.cn/test/
FF, Safari, Chrome: The requested file is the one being accessed

2. For the embed tag, the above description is when type is not empty. When type is empty, FF requests 1, and IE responds differently depending on the type value.

3. If the above tags do not contain src="", no secondary request will occur.

<<:  This article will show you what Vite does to the browser's request

>>:  Pure CSS3 to achieve mouse over button animation Part 2

Recommend

How many common loops do you know about array traversal in JS?

Preface As a basic data structure, arrays and obj...

Application nesting of HTML ul unordered tables

Application nesting of unordered lists Copy code T...

Solve the installation problem of mysql8.0.19 winx64 version

MySQL is an open source, small relational databas...

Common array operations in JavaScript

Table of contents 1. concat() 2. join() 3. push()...

Designing the experience: What’s on the button

<br />Recently, UCDChina wrote a series of a...

Enterprise-level installation tutorial using LAMP source code

Table of contents LAMP architecture 1.Lamp Introd...

Flex layout realizes the layout mode of upper and lower fixed and middle sliding

This article mainly introduces the layout method ...

Detailed analysis of the usage and application scenarios of slots in Vue

What are slots? We know that in Vue, nothing can ...

View MySQL installation information under Linux server

View the installation information of mysql: #ps -...

Tutorial on using the frameset tag in HTML

Frameset pages are somewhat different from ordina...

web.config (IIS) and .htaccess (Apache) configuration

xml <?xml version="1.0" encoding=&qu...

MySQL uses covering index to avoid table return and optimize query

Preface Before talking about covering index, we m...