关于页面跳转

a 标签跳转

<a href="https://sakurablossom.cn" target="_blank">浏览器将会打开新标签页</a>
<a href="https://sakurablossom.cn" target="_self">浏览器将会在此标签页跳转</a>

target 默认值为 _self

javascript 跳转

window.location.href="https://sakurablossom.cn"//将在此标签页跳转
window.open("https://sakurablossom.cn")//打开新标签页,有可能会被 firefox 浏览器提示拦截

以上都是初级的使用方法,满足基本的需求,不涉及 frame, iframe 等

原文地址:https://www.cnblogs.com/Minstrel223/p/12383531.html