当前位置:主页 > 网页前端 > jquery >
时间: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); }); });