Add another class to a div

前端 未结 7 941
盖世英雄少女心
盖世英雄少女心 2020-11-29 07:29

I have a function that checks the age of a form submission and then returns new content in a div depending on their age. Right now I am just using getElementById to replace

7条回答
  •  北海茫月
    2020-11-29 07:48

    Use Element.classList

    document.getElementById('hello').classList.add('someClass');
    

    The .add method will only add the class if it doesn't already exist on the element. So no need to worry about duplicate class names.

提交回复
热议问题