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

jQuery realizes the effect of closing the pop-up layer by clicking anywhere outside the pop-up layer

高洛峰
Release: 2016-12-09 16:12:29
Original
1722 people have browsed it

When I was working on projects before, I would often click a button on the main page, and a div would pop up on the right to output detailed information about the corresponding content. At this time, I hope to close the pop-up layer when the mouse clicks outside the pop-up layer. The main idea is:

Find the element clicked by the mouse

To determine whether this element is within the specified area, in fact, it is to determine its parent element Is it a pop-up layer?

If not, hide the pop-up layer. If it is, no operation will be performed.

Specific implementation

This code requires the use of jQuery. The code is as follows:

$(document).mousedown(function(e){
if($(e.target).parent("#info").length==0){
$("#info").hide();
}
})
$(document).mousedown(function(e){})
Copy after login

$(document) It is to get the entire web page document object, similar to the native window.ducument

mousedown is a mouse event, which means when the mouse pointer moves over the element and the mouse button is pressed, similar events include:

mouseup: when on the element When the mouse button is released

mouseover: When the mouse pointer is over the element

$(e.target)

$(e.target) represents the element that gets the click event.

parent()

$(e.target).parent("#info").length is to get the parent element of the current click event element with the id of info.


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!