Home > Web Front-end > JS Tutorial > body text

Detailed explanation of jQuery's hidden DIV function when clicking anywhere except the specified area

小云云
Release: 2017-12-21 13:06:34
Original
3246 people have browsed it

This article mainly introduces the relevant information about jQuery clicking anywhere except the specified area to hide p. The code is simple and easy to understand, very good, and has reference value. Friends who need it can refer to it. I hope it can help everyone.

The specific code is as follows:


$('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();                          
    }
  }
});
Copy after login

or


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

PS: Continue below Look at a piece of code jquery click to hide anywhere except itself


$("#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;  为阻止冒泡事件
});
 

Copy after login

Related recommendations:

js hide between divs by class name Content

jQuery method of hiding div

js implementation of hiding div area outside click div area_javascript skills

The above is the detailed content of Detailed explanation of jQuery's hidden DIV function when clicking anywhere except the specified area. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!