标签:
//方法一 $("#hello").removeClass (function (index, css) { return (css.match (/(^|\s)color-\S+/g) || []).join(‘ ‘); });
//方法二 $(‘div‘).attr(‘class‘,function(i, c){ return c.replace(/(^|\s)color-\S+/g, ‘‘); });
标签:
原文地址:http://www.cnblogs.com/zhangjiehui/p/4424599.html