Change CSS rule in class using JQuery

前端 未结 8 1352
我在风中等你
我在风中等你 2020-12-05 04:40

I have a class in CSS

.Foo
{
  width:20px;
}

Using Jquery I would like to do something similar to this on an event:

$(\".Fo         


        
8条回答
  •  伪装坚强ぢ
    2020-12-05 05:28

    Try using multiple styles

    .FooSmall
    {
      width:20px;
    }
    .FooBig
    {
      width:40px;
    }
    
    $('#theTarget').removeClass('FooSmall').addClass('FooBig');
    

提交回复
热议问题