我通过单击外部更改了关闭Sweet Alert2模态的样式。单击模态右上角的关闭按钮时,我还需要应用此样式,为此,我需要删除默认的事件侦听器由sweet alert2在关闭按钮上创建。Foowing是sweet alert2 modal为关闭模式而创建的默认代码。
<button type="button" class="swal2-close" aria-label="Close this dialog" style="display: flex;">×</button>
我正在使用以下代码删除关闭按钮上的默认事件监听器
this.modalCloseBtn=document.querySelector('.swal2-close');
this.modalCloseBtn.removeEventListener('click',this.removeEvent.bind(this));
但是它不起作用。有人可以帮我解决这个问题吗?