如何使用 jquery 附加链接的 HREF?

发布于 2024-11-07 17:16:10 字数 241 浏览 0 评论 0原文

我想更改所有包含“foobar.com/?”的链接使用 jquery 广告“&t=test”(“foobar.com/?&t=test”)。

这是我的代码,似乎不起作用。 ->

$('a[href*="foobar.com/?"]').attr(href).append('&t=test');

我的代码有什么问题吗?或者更改所有链接的更正确方法是什么?

I want to change all links containing "foobar.com/?" to ad "&t=test" ("foobar.com/?&t=test") with jquery.

This is the code I have that does not seem to work. ->

$('a[href*="foobar.com/?"]').attr(href).append('&t=test');

What is wrong with my code? Or what is a more proper way to change all the links?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猛虎独行 2024-11-14 17:16:10

这是怎么做的

$('a[href*="foobar.com/?"]').each(function(){
  this.href += '&t=test';
});

this is how to do it

$('a[href*="foobar.com/?"]').each(function(){
  this.href += '&t=test';
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文