如何使用jQuery删除类?

如何使用jQuery删除类?

This is Test

用户jQuery

 jQuery(document).ready(function(){ jQuery(".class_name").removeClass("class_name"); }) 

http://api.jquery.com/removeClass/

 $('p').removeClass('yourClass');