Adding and removing style attribute from div with jquery

前端 未结 7 2017
走了就别回头了
走了就别回头了 2021-01-30 00:53

I\'ve inherited a project I\'m working on and I\'m updating some jquery animations (very little practice with jquery).

I have a div I need to add and remove the style at

7条回答
  •  闹比i
    闹比i (楼主)
    2021-01-30 01:08

    The easy way to handle this (and best HTML solution to boot) is to set up classes that have the styles you want to use. Then it's a simple matter of using addClass() and removeClass(), or even toggleClass().

    $('#voltaic_holder').addClass('shiny').removeClass('dull');
    

    or even

    $('#voltaic_holder').toggleClass('shiny dull');
    

提交回复
热议问题