gpt4 book ai didi

jQuery : Append querystring to all links

转载 作者:行者123 更新时间:2023-12-03 21:47:14 24 4
gpt4 key购买 nike

我想将查询字符串附加到页面内的所有动态链接上 - 以修复旧版本中的错误 - 这可能吗?

有什么想法吗?

最佳答案

类似这样的吗?

var querystring = 'myquerystringtoadd';

$('a').each(function() {
var href = $(this).attr('href');

if (href) {
href += (href.match(/\?/) ? '&' : '?') + querystring;
$(this).attr('href', href);
}
});

Working example.

关于jQuery : Append querystring to all links,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11526102/

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