<!-- 新页面打开链接 -->
<a href="https://example.com" target="_blank">点击在新页面打开</a>

为了提高安全性(防止新页面通过 window.opener 访问原始页面)
<a href="https://example.com" target="_blank" rel="noopener noreferrer">
安全地在新页面打开
</a>

noopener:阻止新页面访问原始页面的 window 对象,提升安全性
noreferrer:防止新页面获取原始页面的访问来源信息(兼容旧浏览器)