How to close a modal by clicking outside the modal window?

前端 未结 4 802
既然无缘
既然无缘 2021-01-11 21:16

In a very simple jQuery modal, I close the modal by clicking on CLOSE as

$(\'#close\').click(function(e) {
  e.preventDefault();
  $(\'#overlay, #alertModalO         


        
4条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-11 21:29

    I found it helpful to include:

    $('.item-modal').click(function(e) {
      e.stopPropagation();
    });
    

提交回复
热议问题