方法 - htmx.off()

从元素中移除事件监听器

参数

  • eventName - 要删除监听器的事件名称
  • listener - 要移除的监听器

或者

  • target - 要从中删除侦听器的元素
  • eventName - 要删除监听器的事件名称
  • listener - 要移除的监听器

例子

    // remove this click listener from the body
    htmx.off("click", myEventListener);

    // remove this click listener from the given div
    htmx.off("#my-div", "click", myEventListener)