把info类下面所有的a标签链接后天加"#article"。
jQuery(document).ready(function($){
$(‘.info a‘).each(function(){
let Ahref = $(this).html() + "#article";
$(this).attr("href",Ahref);
});
});
时间: 2024-10-05 22:44:39
把info类下面所有的a标签链接后天加"#article"。
jQuery(document).ready(function($){
$(‘.info a‘).each(function(){
let Ahref = $(this).html() + "#article";
$(this).attr("href",Ahref);
});
});