Change URL parameters

前端 未结 26 2442
孤独总比滥情好
孤独总比滥情好 2020-11-22 08:40

I have this URL:

site.fwx?position=1&archiveid=5000&columns=5&rows=20&sorting=ModifiedTimeAsc

what I need is to be able to

26条回答
  •  一整个雨季
    2020-11-22 09:12

    If you want to change the url in address bar:

    const search = new URLSearchParams(location.search);
    search.set('rows', 10);
    location.search = search.toString();
    

    Note, changing location.search reloads the page.

提交回复
热议问题