标签:改变 标签 attr jquer art this att each let
把info类下面所有的a标签链接后天加"#article"。
jQuery(document).ready(function($){
$(‘.info a‘).each(function(){
let Ahref = $(this).html() + "#article";
$(this).attr("href",Ahref);
});
});
标签:改变 标签 attr jquer art this att each let
原文地址:http://www.cnblogs.com/SoYang/p/7152868.html