我有以下 div 和点击监听器:
$('.right-col .modal-container').live('click',function(e) {
$(this).remove();
$('.right-col .modal-backdrop').remove();
});
<div class="modal-container">
....some other buttons and html elements inside
</div>
问题是,当我单击此模态容器元素内的按钮时,它还会触发 .modal-container 处的单击功能。如何避免这种级联?