gpt4 book ai didi

jQuery:拦截出站链接并添加参数

转载 作者:行者123 更新时间:2023-12-03 22:43:15 24 4
gpt4 key购买 nike

当用户单击我页面上的链接时,我需要在浏览器执行操作之前将参数 Hello=True 添加到 URL。

因此,用户单击 MyPage.aspx 并被发送到 MyPage.ASPX?Hello=True。

必须是客户端,最好使用 jQuery

如果需要,我可以向标签添加属性。

伊恩

最佳答案

如果您需要操作所有链接,请使用:

$('a').each(function() {
var href = this.href;
if (href.indexOf('?') != -1) {
href = href + '&Hello=True';
}
else {
href = href + '?Hello=True';
}
$(this).attr('href', href);
});

关于jQuery:拦截出站链接并添加参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2836380/

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