30
사용자가 외부를 클릭 할 때 jQuery를 사용하여 DIV 숨기기
이 코드를 사용하고 있습니다 : $('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클릭 할 때 더 이상 링크가 작동하지 않는다는 것입니다.