在编辑html网页的时候,我们要对一个链接在新窗口打开,这里我们就可以用target属性等于_blank 进行定义。
实例代码:
<!doctype html>
<head>
<meta charset="utf-8">
</head>
<html>
<body>
<p>这是一个链接到新窗口的网页</p>
<a href="https://www.dwoke.com" target="_blank">你行网</a>
<p>这是一个跳出框架的链接<br/>网页会当前页面打开</p>
<a href="https://www.dwoke.com/forum" target="_top">社区</a>
</body>
</html>
运行效果:
从这个实例看出,单击你行网在新窗口打开,单击社区在当前页面打开。
评论