方法 - htmx.addClass()

此方法为给定元素添加一个类。

参数

  • elt - 要添加类的元素
  • class - 要添加的类

或者

  • elt - 要添加类的元素
  • class - 要添加的类
  • delay - 添加类前的延迟(以毫秒为单位)

例子

  // add the class 'myClass' to the element with the id 'demo'
  htmx.addClass(htmx.find('#demo'), 'myClass');

  // add the class 'myClass' to the element with the id 'demo' after 1 second
  htmx.addClass(htmx.find('#demo'), 'myClass', 1000);