如何使用 jquery 附加链接的 HREF?
我想更改所有包含“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是怎么做的
this is how to do it