gpt4 book ai didi

jquery - 通过 jQuery 更改参数值重新加载页面

转载 作者:行者123 更新时间:2023-12-01 03:37:56 24 4
gpt4 key购买 nike

我有一个页面,其 URL 如下:

www.mydomain.com/orders.html?orderNumber=363035001&return=true

我需要一种在特定事件时通过 jQuery 重新加载页面的方法,更改最后一个参数。所以要重新加载的网址应该是:

www.mydomain.com/orders.html?orderNumber=363035001&return=false

最佳答案

使用此方法,您首先从当前页面获取 URL,然后从 true 更改为 false,反之亦然,然后更改位置。

URL = document.URL;

if(URL.indexOf('return=true') != -1)
URL = URL.replace('return=true','return=false');
else
URL = URL.replace('return=false','return=true');

window.location = URL;

关于jquery - 通过 jQuery 更改参数值重新加载页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28675695/

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