Clear element.classList

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

element.classList is of DOMTokenList type.

Is there a method to clear this list?

7条回答
  •  半阙折子戏
    2021-02-05 00:10

    Nowadays, classList is preferred to (remove|set)Attribute or className. Pekaaw's answer above is good, 1 similar alternative is to set the DomTokenList.value

    elem.classList.value = ''
    

提交回复
热议问题