1. ホーム
  2. jquery

[解決済み] ユーザーがDIVの外側をクリックしたときに、jQueryを使用してDIVを非表示にする

2022-02-07 07:46:20

質問

このコードを使用しています。

$('body').click(function() {
   $('.form_wrapper').hide();
});

$('.form_wrapper').click(function(event){
   event.stopPropagation();
});

そして、この HTML :

<div class="form_wrapper">
   <a class="agree" href="javascript:;">I Agree</a>
   <a class="disagree" href="javascript:;">Disagree</a>
</div>

問題は div と表示され、クリックしても動作しなくなりました。

解決方法は?

同じ問題で、この簡単な解決策を思いつきました。再帰的に動作させることもできます。

$(document).mouseup(function(e) 
{
    var container = $("YOUR CONTAINER SELECTOR");

    // if the target of the click isn't the container nor a descendant of the container
    if (!container.is(e.target) && container.has(e.target).length === 0) 
    {
        container.hide();
    }
});