当前位置:主页 > 网页前端 > jquery >

jQuery 循环遍历改变a标签的href(实例讲解)

时间:2021-08-24 08:47:55 | 栏目:jquery | 点击:

把info类下面所有的a标签链接后天加"#article"。

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

您可能感兴趣的文章:

相关文章