<a></a>
target属性
The target attribute specifies where to open the linked document:
<a href="http://www.w3schools.com" target="_blank">Visit W3Schools</a>

Attribute Values

ValueDescription
_blankOpen the linked document in a new window
_selfOpen the linked document in the same frame as it was clicked (this is default)
_parentOpen the linked document in the parent frameset
_topOpen the linked document in the full body of the window
framenameOpen the linked document in a named frame
_blank: 也就是打开一个新窗口连接。
_self:    在同一个frame中打开。
_parent :在parent frameset中打开。