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

Implementation example of Nginx+Tomcat load balancing cluster

Table of contents introduction 1. Case Overview 2...

Have you carefully understood Tags How it is defined How to use

Preface : Today I was asked, "Have you carefu...

Vue.js implements tab switching and color change operation explanation

When implementing this function, the method I bor...

Database query which object contains which field method statement

The database queries which object contains which ...

Native js to realize the upload picture control

This article example shares the specific code of ...

Two ways to connect WeChat mini program to Tencent Maps

I've been writing a WeChat applet recently an...

Timeline implementation method based on ccs3

In web projects we often use the timeline control...

PHP related paths and modification methods in Ubuntu environment

PHP related paths in Ubuntu environment PHP path ...

Detailed examples of Zabbix remote command execution

Table of contents one. environment two. Precautio...

Two ways to completely delete users under Linux

Linux Operation Experimental environment: Centos7...

Vue.set() and this.$set() usage and difference

When we use Vue for development, we may encounter...

How to customize at and cron scheduled tasks in Linux

There are two types of scheduled tasks in Linux s...