在页面<head></head>之间加入<base target=_blank>(XHTML:<base target="_blank" />),就会使该页面所有链接均为新开窗口打开。
<base>是一个链接基准标记,用以改变页面中所有链接标记的参数默认值。
<base target="" href=""/>
如果指定href的值 所有连接将基于该地址的连接
------------------------------------------------------------------
<base target="_blank" href=http://www.163.com/>
<a href='2.html'>连接</a> 连接是http://www.163.com/2.html 默认是_blank打开新页
__________________________________________
元素说明
当使用时,base 元素必须出现在文档的 head 内,在任何用于引用外部资源的元素之前。
此元素在 Internet Explorer 3.0 及以上版本的 HTML 中可用,在 Internet Explorer 4.0 及以上版本的脚本中可用。
此元素不改变内容的显示格式。
此元素不需要关闭标签。