js 中跳转到另一个页面的方法包括:直接跳转(window.location):将新页面的 url 赋值给 window.location.href 属性。使用 window.open:调用 window.open 方法并传入新页面的 url,可在新窗口或选项卡中打开页面。使用 html anchor 标签:在 html 中创建 锚点元素并将新页面的 url 设为其 href 属性。
JS 中跳转到另一个页面的方法
直接跳转(window.location):
window.location.href = "https://example.com";
使用 window.open:
var newWindow = window.open("https://example.com", "_blank");
使用 HTML Anchor 标签:
<a href="https://example.com">点击这里跳转</a>
详细步骤:
使用 window.location:
使用 window.open:
使用 HTML Anchor 标签: