HTML 用法
<body>
<p>选择所有带target属性的a元素</p>
<a href="http://www.taobao.com">taobao.com</a>
<a href="http://www.semi-warm.com" target="_blank">semi-warm.com</a>
<a href="http://www.baidu.com" target="_top">baidu.com</a>
</body>
CSS 用法
a[target]
{
background-color:yellow;
}