how to remove class using jQuery?

前端 未结 2 928
既然无缘
既然无缘 2021-01-29 15:36

how to remove class using jQuery?

This is Test
2条回答
  •  -上瘾入骨i
    2021-01-29 15:41

    user jQuery

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

提交回复
热议问题