把info类下面所有的a标签链接后天加"#article"。
jQuery(document).ready(function($){
$('.info a').each(function(){
let Ahref = $(this).attr("href") + "#article";
$(this).attr("href",Ahref);
});
});
以上是[jQuery]循环遍历改变a标签的href的详细内容。更多信息请关注PHP中文网其他相关文章!