weixin_33709609 2014-09-16 23:44 采纳率: 0%
浏览 22

jQuery调用函数

I have am having an issue with my modal window structure. I have a div that calls a function when it is clicked to show a modal window. Inside of the showModal() function, I call another function that acts as the close function if the user clicks ESC key or out of the modal window anywhere in the document.

Here is the code:

$('body').on('click', '.container', function(){
    showModal();
});

On click, this opens up showModal

function showModal(_this) {
  $('body').addClass('video-open');
  $('.popup').load(templateDir + '/views/video.html', function() {
   $(this).show();
   $('.cloaked').show();
 });
 closeModal('.modal-window');
}

closeModal gets called immediately in the showModal. For some reason emptyModal gets fired immediately as well when my intention is to only fire it when the user clicks ESC or out of the modal.

function closeModal(selector) {
 $(document).keyup(function(e){
  if (e.keyCode == 27) {
   emptyModal(selector); 
  } 
});

$(document).click(function(e) {
 if (!$(e.target).closest(selector).length) {
   emptyModal(selector);      
  }
 });  
}

Using console.log I can see that 'window closed' and confirm that emptyModal is getting called immediately when closeModal is even though it is wrapped in conditional statements.

function emptyModal(selector) {
 console.log('window closed')
 $(selector).empty().hide();   
 $('.cloaked').hide();
}

I think overall I have a misunderstanding of how to do what I need and I am probably implementing it wrong. Just a side note, I have closeModal and emptyModal as separate functions as I use them in different modal view functions other than the showModal one.

  • 写回答

1条回答 默认 最新

  • weixin_33743661 2014-09-16 23:55
    关注

    In your closeModal function , instead of putting a click event on the whole document try putting it on .cloaked

    $('.cloaked').click(function(e) {
     if (!$(e.target).closest(selector).length) {
       emptyModal(selector);      
      }
     }); 
    

    If I understand correctly , the element with the .cloaked class is supposed to show a black cloak in the background when the modal dialog opens up, so clicking any where other than the modal dialog would mean that the user is clicking on the element with the .cloaked class.

    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀