jquery实现页面加载时删除特定class 的div内前三个字符
jQuery(document).ready(function(){
jQuery("div.groupheader").each(function(){
$(this).text($(this).text().substr(3));
});
});
jQuery(document).ready(function(){
jQuery("div.groupheader").each(function(){
$(this).text($(this).text().substr(3));
});
});