1. 使用is(‘.classname’)的方法$('div').is('.redColor')2. 使用hasClass(‘classname’)的方法(注意jquery的低版本可能是hasClass(‘.classname’))$('div').hasClass('redColor')