Change window location Jquery

后端 未结 6 1764
Happy的楠姐
Happy的楠姐 2021-01-01 14:37

I am using ajax to load my website content and want to update the window location when ajax is successful.

How can I update the window location to \"/newpage\"?? I n

6条回答
  •  孤城傲影
    2021-01-01 15:07

    Assuming you want to change the url to another within the same domain, you can use this:

    history.pushState('data', '', 'http://www.yourcurrentdomain.com/new/path');
    

提交回复
热议问题