一个 target,所有的链接
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
- <meta http-equiv="Content-Language" content="zh-cn" />
- <base target="_blank" />
- </head>
- <body>
- <p>
- <a href="http://www.yousite.com" target="_blank">这个连接</a> 将在新窗口中加载,因为 target 属性被设置为 "_blank"。
- </p>
- <p>
- <a href="http://www.yousite.com">这个连接</a> 也将在新窗口中加载,即使没有 target 属性。
- </p>
- </body>
- </html>