jquery实现页面加载时删除特定class 的div内前三个字符

jQuery(document).ready(function(){
        
jQuery("div.groupheader").each(function(){
 $(this).text($(this).text().substr(3));
      });
});

原文地址:https://www.cnblogs.com/GreenGrass/p/4666750.html