Change URL and redirect using jQuery

前端 未结 6 1458
眼角桃花
眼角桃花 2020-11-27 09:37

I have some code like this,

and now I want to redirect lik

6条回答
  •  粉色の甜心
    2020-11-27 10:18

    tell you the true, I still don't get what you need, but

    window.location(url);
    

    should be

    window.location = url;
    

    a search on window.location reference will tell you that.

提交回复
热议问题