Add another class to a div

前端 未结 7 944
盖世英雄少女心
盖世英雄少女心 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:41

    If the element has no class, give it one. Otherwise, append a space followed by the new className:

      var el = document.getElementById('hello');
      if(el) {
        el.className += el.className ? ' someClass' : 'someClass';
      }
    

提交回复
热议问题