HTML a link target attribute

<a></a>The targetattributes of the tag specify where to open the linked document, as shown in the following table:

value effect
_blank Open the linked document in a new window
_self By default, open the linked document in the same frame
_parent Open the linked document in the parent frame set
_top Open the linked document in the entire window
frame name Open the linked document in the specified frame

The specific click effects are as follows:

  1. _blank
  2. _self
  3. _parent
  4. _top

Guess you like

Origin blog.csdn.net/Jack_lzx/article/details/113990693