removeClass color-*

bootstrap推出一系列的class名称,例如col-md-*、btn-*等等,有时候就会有想要将这一类className删掉的冲动~
那咋样才能妥妥的实现呢?你是不是已经看到下面答案了,诶诶..那么心急
//方法一

$("#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, '');

});

 

你可能感兴趣的:(removeClass)