我想更改包含“foobar.com/?”的所有链接使用 jquery来广告“ t = test”(“foobar.com/?\u0026amp;t=test”). 这是我的代码似乎不起作用. – $('a[href*="foobar.com/?"]').attr(href).append('t=test'); 我的代码出
这是我的代码似乎不起作用. – >
$('a[href*="foobar.com/?"]').attr(href).append('&t=test');
我的代码出了什么问题?或者更改所有链接的更合适的方法是什么?
这是怎么做的$('a[href*="foobar.com/?"]').each(function(){ this.href += '&t=test'; });