碎片時(shí)間學(xué)編程「360]:從元素中刪除事件監(jiān)聽(tīng)器

從元素中刪除事件偵聽(tīng)器。
使用 EventTarget.removeEventListener() 從元素中刪除事件偵聽(tīng)器。
省略第四個(gè)參數(shù)選擇使用 false 或根據(jù)添加事件偵聽(tīng)器時(shí)使用的選項(xiàng)指定它。
const off = (el, evt, fn, opts = false) => ?el.removeEventListener(evt, fn, opts);
示例:
const fn = () => console.log('!');document.body.addEventListener('click', fn);off(document.body, 'click', fn); // no longer logs '!' upon clicking on the page
更多內(nèi)容請(qǐng)?jiān)L問(wèn)我的網(wǎng)站:https://www.icoderoad.com
標(biāo)簽: