gpt4 book ai didi

javascript - 用 document.URL 替换当前 url

转载 作者:行者123 更新时间:2023-11-30 08:54:03 25 4
gpt4 key购买 nike

我试图获取当前 URL 并将其替换为其他内容。但是,如果 x = document.URL,我的代码将无法运行,但对于 x = "String",一切正常

function test(){

var x = document.URL
var url = window.location.toString();
window.location = url.replace( x , 'whatever');
}
test();

谢谢你帮助我

最佳答案

变量的值 urlx是相同的,因此您只需将整个 URL 替换为“whatever”即可。为什么不直接使用 window.location = 'whatever'相反?

如果你想替换整个 URL,你需要在你放置 whatever 的字符串中给出一个完整的 URL。 , 否则它将充当相对 URL 而不是绝对 URL。

所以试试像 window.location = "<a href="http://www.google.com" rel="noreferrer noopener nofollow">http://www.google.com</a>" 这样的东西

关于javascript - 用 document.URL 替换当前 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15256877/

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