gpt4 book ai didi

javascript - 替换URL中的参数并刷新页面

转载 作者:数据小太阳 更新时间:2023-10-29 04:23:32 26 4
gpt4 key购买 nike

我的默认 URL 是这样的

http://localhost:4444/index.html?file=sample

我有一个包含各种文件名的下拉列表,我想通过单击下拉列表来替换参数 sample
对于每次更改,URL 都应使用现有参数进行更改。

我试过以下,

location.href = location.href + "filename" ;

但它不会替换文件名。

最佳答案

欢迎来到 2018 年,您现在可以 mostly使用 URLSearchParams处理解析和替换你得到

var params = new URLSearchParams(location.search);
params.set('file', 'sample');
window.location.search = params.toString();

URLSearchParams将根据需要替换或添加参数到查询字符串。

关于javascript - 替换URL中的参数并刷新页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19538760/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com