Clear element.classList

前端 未结 7 1490
暗喜
暗喜 2021-02-04 23:38

element.classList is of DOMTokenList type.

Is there a method to clear this list?

7条回答
  •  臣服心动
    2021-02-04 23:59

    Another option is to simply remove the class attribute:

    elem.removeAttribute('class')
    

提交回复
热议问题