在Microsoft的职业页面(http://careers.microsoft.com/)上,如果您点击其中一个链接(学生......或正在工作......),您将看到一个“弹出”窗口。我很想知道在没有JavaScript的情况下是否可以这样做主要是因为我的JavaScript知识有限。
答案 0 :(得分:0)
当然,可以在链接标记上使用target =“_ new”属性:
<html>
<body>
<p> This is the page.</p>
<a target="_new" href="http://www.google.com">This is the popout</a>
</body>
</html>