What is the base tag and what does it do?

What is the base tag and what does it do?

The <base> tag specifies the default address or default target for all links on a page.
Normally, browsers fill in the blanks in relative URLs by extracting the corresponding elements from the URL of the current document.
Use the <base> tag to change this. The browser will then resolve all relative URLs using the specified base URL instead of the current document's URL. This includes URLs in <a>, <img>, <link>, and <form> tags.

test:

1: The link path placed before the base tag can use a relative path and is relative to the current path.
However, the link placed after it using a relative path will be relative to the path specified by base.
2: After using the base tag, the relative path of the link in the body will be relative to the path specified by base.
3: After using the base default target, the subsequent opening method will be opened in the method specified by base, unless the opening method is explicitly defined later.
Summary: base actually defines a default address and default target. All subsequent link elements will work.

<<:  Attributes in vue v-for loop object

>>:  Nginx reverse proxy to go-fastdfs case explanation

Recommend

Example analysis of mysql user rights management

This article describes the MySQL user rights mana...

Vue achieves seamless carousel effect

This article shares the specific code of Vue to a...

Example of how to implement underline effects using Css and JS

This article mainly describes two kinds of underl...

Linux service monitoring and operation and maintenance

Table of contents 1. Install the psutil package S...

...

Summary of using MySQL online DDL gh-ost

background: As a DBA, most of the DDL changes of ...

How to migrate the data directory in mysql8.0.20

The default storage directory of mysql is /var/li...

How Database SQL SELECT Queries Work

As Web developers, although we are not profession...

Analysis of uniapp entry-level nvue climbing pit record

Table of contents Preface Hello World image Set b...

MySQL's method of dealing with duplicate data (preventing and deleting)

Some MySQL tables may contain duplicate records. ...

vue element el-transfer adds drag function

The Core Asset Management Project requires el-tra...