欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

[jQuery]循环遍历改变a标签的href

程序员文章站 2022-04-12 11:57:34
...
把info类下面所有的a标签链接后天加"#article"。

jQuery(document).ready(function($){
  $('.info a').each(function(){
    let Ahref = $(this).attr("href") + "#article";
    $(this).attr("href",Ahref);
  });
});

以上就是[jQuery]循环遍历改变a标签的href的详细内容,更多请关注其它相关文章!