美文网首页
前端几种跳转方式

前端几种跳转方式

作者: 宇浩_7658 | 来源:发表于2019-06-21 16:16 被阅读0次

    1.onclick跳转

        设置window的location.href属性

        onclick="window.location.href='URL'"

        onclick="location='URL'"

    2.调用window的open方法

        onclick="window.open('URL','_blank');" // 在新窗口打开

        onclick="window.open('URL','_self');" // 覆盖当前页

    3.a标签跳转

        <a href="URL" target="_blank">Preface</a> // 在新窗口打开

        <a href="URL" target="_self">Preface</a> // 覆盖当前页,target属性默认为_self,此处可省略

    相关文章

      网友评论

          本文标题:前端几种跳转方式

          本文链接:https://www.haomeiwen.com/subject/stfuqctx.html