js 页面跳转两种方式(原页面跳转,打开新标签页)

1 页面跳转(原页面跳转)

(1)a标签实现

<a href="https://blog.csdn.net/qq_38974638">旭东怪的博客</a>

(2)window.location.href实现

window.location.href="https://blog.csdn.net/qq_38974638";

2 页面跳转 (打开新标签页)

(1)a标签实现

<a href="https://blog.csdn.net/qq_38974638" target="_blank">旭东怪的博客</a>

(2)window.open()实现

window.open("https://blog.csdn.net/qq_38974638");

 

    原文作者:旭东怪
    原文地址: https://blog.csdn.net/qq_38974638/article/details/108107481
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞