how to redirect to home page

前端 未结 8 1388
时光说笑
时光说笑 2021-02-01 11:45

How can I redirect a user to home page?

Example: mywebsite.com/ddfdf/fdfdsf and I want to redirect to mywebsite.com

However I want to do it wit

8条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-01 12:24

    document.location.href="/";
    

    or

     window.location.href = "/";
    

    According to the W3C, they are the same. In reality, for cross browser safety, you should use window.location rather than document.location.

    See: http://www.w3.org/TR/Window/#window-location

    (Note: I copied the difference explanation above, from this question.)

提交回复
热议问题