<head>
<title>整体属性</title>
<!--base 标签的链接地址可以是相对地址也可以是绝对地址,target的属性表示链接打开的方式-->
<base href="http://xxxx" target="_blank">
</head>
<body>
<a href="mobile/xxxx.html" target="_self">打开跳转页面</a>
</body>
target属性表述链接在浏览器中的打开方式
值 | 描述 |
---|---|
_blank | 在浏览器的新标签页中打开被链接文档。 |
_self | 默认。在当前的标签页中打开被链接文档。 |
_parent | 在父框架集中打开被链接文档。 |
_top | 在整个窗口中打开被链接文档。 |
framename | 在指定的框架中打开被链接文档。 |