<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
Value | Description |
---|---|
_blank | Open the linked document in a new window |
_self | Open the linked document in the same frame as it was clicked (this is default) |
_parent | Open the linked document in the parent frameset |
_top | Open the linked document in the full body of the window |
framename | Open the linked document in a named frame |
_blank: 也就是打开一个新窗口连接。
_self: 在同一个frame中打开。
_parent :在parent frameset中打开。
转载于:https://blog.51cto.com/77857/162390