欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery除指定区域外点击任何地方隐藏DIV功能

程序员文章站 2022-06-24 13:43:31
具体代码如下所示: $('body').click(function(e) { var target = $(e.target); // 如果#ove...

具体代码如下所示:

$('body').click(function(e) {
  var target = $(e.target);
  // 如果#overlay或者#btn下面还有子元素,可使用
  // !target.is('#btn *') && !target.is('#overlay *')
  if(!target.is('#btn') && !target.is('#overlay')) {
    if ( $('#overlay').is(':visible') ) { 
      $('#overlay').hide();                          
    }
  }
});

或者

$('body').click(function(e) {
  if(e.target.id != 'btn' && e.target.id != 'overlay')
   if ( $('#overlay').is(':visible') ) {
     $('#overlay').hide();
   }
})

ps:下面在接着看一段代码jquery 点击除本身外其他地方隐藏

$("#test").click(function(e) { 
  e?e.stoppropagation():event.cancelbubble = true; 
}); 
$(document).click(function() { 
  $("#test").fadeout(); 
<pre name="code" class="html">e?e.stoppropagation():event.cancelbubble = true;  为阻止冒泡事件</pre> }); 
<pre></pre> 
<br> 
<link rel="stylesheet" href="http://static.blog.csdn.net/public/res-min/markdown_views.css?v=2.0"> 

总结

以上所述是小编给大家介绍的jquery除指定区域外点击任何地方隐藏div,希望对大家有所帮助