把info類別下面所有的a標籤連結後天加"#article"。 jQuery(document).ready(function($){ $('.info a').each(function(){ let Ahref = $(this).attr("href") + "#article"; $(this).attr("href",Ahref); });});