📑

カスタムイベント自作

2021/06/24に公開
const event = new CustomEvent('foo', {
  detail: {foobar: 'barfoo'}
})
const el = document.querySelector('.bar')
el.dispatchEvent(event)

Discussion