Home >
Article > Web Front-end > Detailed explanation of how to open the
HTML The default opening method of hyperlink (anchor text) and the default link URL address tag element
<base target="_blank" href="http://www.lpcblog.com/" />
1. Target value:
1._blank New window opens URL link
2. _parent Refresh this webpage and open the corresponding URL address
3. _self
4. _top
The target value here is the same as the target value of a link. The usage method is
2. Href value:
It can be a URL address (website)
The Base tag is the page All links on specify a default address or default target.
In the HTML web page, the A hyperlink (anchor text) address does not have a link with the http URL (domain name). The default browser will open the link and add the base tag to set the URL address.
If there is no opening target method in a hyperlink in an HTML web page, the default browser will set the opening method of its base setting.
1. 88d574120e9e0d5bf9eb3bcd60be7003 is generally placed between the head tags in HTML.
2. Base is used to set the link address opening method and main (domain name) address settings in the html web page.
The above is the detailed content of Detailed explanation of how to open the