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

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

posted @ 2015-07-22 11:06  717806198  阅读(476)  评论(0编辑  收藏  举报