gpt4 book ai didi

javascript - 重定向前编辑 URL

转载 作者:行者123 更新时间:2023-11-28 19:56:05 26 4
gpt4 key购买 nike

在这里,我遇到了一个场景,我想在重定向之前编辑 anchor 标记href。我的情况是,如果 anchor 标记href属性不包含QueryString,则将上一页查询字符串附加到href意味着,假设我当前的页面网址是 xyz?x=2&y=4当前href

href="local/services"

编辑后

href="local/services?x=2&y=4"

我试过了。

HTML:

<a href="http://localhost/services" onclick="appendString(this)">test link </a> 

JavaScript

function appendString(obj) {
var url = obj.getAttribute('href');
if (url.indexOf('?') != -1)
obj.setAttribute('href') = url + window.location.search;
}

也尝试过

function appendString(obj) {
var url = obj.getAttribute('href');
if (url.indexOf('?') != -1)
window.location.href = url + window.location.search;
}

但没有成功。请提出一个解决方案。谢谢。

最佳答案

“setAttribute”参数不正确。

element.setAttribute(name, value);

由 MDN 提供:Element.setAttribute

关于javascript - 重定向前编辑 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22529655/

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