当前位置 : 主页 > 网页制作 > JQuery >

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

来源:互联网 收集:自由互联 发布时间:2021-06-15
我想更改包含“foobar.com/?”的所有链接使用 jquery来广告“ t = test”(“foobar.com/?\u0026amp;t=test”). 这是我的代码似乎不起作用. – $('a[href*="foobar.com/?"]').attr(href).append('t=test'); 我的代码出
我想更改包含“foobar.com/?”的所有链接使用 jquery来广告“& t = test”(“foobar.com/?\u0026amp;t=test”).

这是我的代码似乎不起作用. – >

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

我的代码出了什么问题?或者更改所有链接的更合适的方法是什么?

这是怎么做的

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