css target 属性是一个速记属性设定 target-name, target-new 和 target-position 属性
默认值 | current window above |
---|---|
继承 | no |
版本 | CSS3 |
JavaScript 语法 | object.style.target="new front" |
target: *target-name target-new target-position* ;
值 | 描述 |
---|---|
target-name | 规定在何处打开超链接(target destination) |
target-new | 规定应该在新窗口或已有窗口的新标签页中打开超链接 |
target-position | 规定在何处放置新的目的地链接 |
target-new 和 target-position 值只有在 target-name 值创建新标签页或新窗口中有效
任何主流浏览器都不支持 target 属性
在新窗口中打开所有超链接,并放置上述所有其他标签/窗口的新窗口
a {
target:new front;
}