gpt4 book ai didi

javascript - JS/HTML5 从 url 中删除 url 参数

转载 作者:行者123 更新时间:2023-11-28 04:39:43 25 4
gpt4 key购买 nike

我有一个这样的网址

/users/?i=0&p=90

我怎样才能在 js 中删除

中的部分
? to 90

谁能告诉我一些代码?

编辑

我的意思是用 window.location.href 做这个(所以直接在浏览器 url 栏中)

我试过了

function removeParamsFromBrowserURL(){
document.location.href = transform(document.location.href.split("?")[0]);
return document.location.href;
}

我也不想进行重定向,所以只需清除 ?结束

最佳答案

function removeParamsFromBrowserURL(){
return window.location.href.replace(/\?.*/,'');
}

关于javascript - JS/HTML5 从 url 中删除 url 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10542820/

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