Introduction to the use of base link tag base

Introduction to the use of base link tag base
<br />When you click the link, the web page address that pops up is https://www.jb51.net/web/ or https://www.jb51.net/css/, which is the address pointed to by the base link added before the files of these relative paths. If the link in the target file does not specify a target attribute, the target attribute in the base tag is used.
It is often used in frame structures, such as two frames on the left and right, to display the connections in the file in the left frame in the right frame. Just use the base tag and write its target attribute value as the right frame name, so you don't have to specify the target attribute for each link in the file in the left frame.
Other instructions for the base href tag:
1. When used, the BASE element must appear in the HEAD of the document, before any references to external sources.

2. This element is available in HTML in Microsoft® Internet Explorer 3.0 and in script in Internet Explorer 4.0.
3. This element will not be rendered.
4. This element does not require a closing tag.
5. The base tag is actually still useful. For example, <base href="_blank"> will make all links on this page open in a new page, so you don’t have to add target="_blank" to each link.
Note in IE7:
1. No additional output characters can be added before <html>. Otherwise IE7 will not parse base.
2. <base> is a link base tag, which is used to change the default parameter values ​​of all link tags in the file. It can only be applied to the beginning of the file, between the tags <head> and </head>.

<<:  Detailed tutorial on installing and configuring MySql5.7 on Ubuntu 20.04

>>:  JS deep and shallow copy details

Recommend

Vue Element-ui form validation rule implementation

Table of contents 1. Introduction 2. Entry mode o...

Detailed explanation of common Docker commands

1. Help Command 1. View the current Docker versio...

Gallery function implemented by native Js

Table of contents The first The second Native Js ...

How to use glog log library in Linux environment

Generate Linux library The Linux version uses cen...

TCP performance tuning implementation principle and process analysis

Three-way handshake phase Number of retries for c...

Problems with using wangeditor rich text editing in Vue

wangEditor is a web rich text editor developed ba...

Summary of 50+ Utility Functions in JavaScript

JavaScript can do a lot of great things. This art...

Implementation of MySQL Shell import_table data import

Table of contents 1. Introduction to import_table...

MySQL multi-instance deployment and installation guide under Linux

What is MySQL multi-instance Simply put, MySQL mu...

MySQL Workbench download and use tutorial detailed explanation

1. Download MySQL Workbench Workbench is a graphi...

11 ways to remove duplicates from js arrays

In actual work or interviews, we often encounter ...

How to solve the phantom read problem in MySQL

Table of contents Preface 1. What is phantom read...

Summary of methods for writing judgment statements in MySQL

How to write judgment statements in mysql: Method...