Click jQuery to close the simple instance of the pop-up layer outside of itself _ jquery

Source: Internet
Author: User
This article mainly introduces the simple example of closing the pop-up layer by clicking jQuery outside of itself. If you need it, you can refer to it and hope to help you. The main function is to Click Show, then, the display effect can be closed by clicking any location on the page, mainly $ (document ). click Function

There are usually some pop-up layers in the development process. After the pop-up, it is automatically closed when you click somewhere else on the page. The following code is used:

HTML code:

The Code is as follows:


Click


Show-area



CSS code:
. Hide {display: none ;}

JS Code

The Code is as follows:


$ (Document). ready (function (){
$ ("P. down"). click (function (e ){
E. stopPropagation ();
$ ("P. con"). removeClass ("hide ");
});
$ (Document). click (function (){
If (! $ ("P. con"). hasClass ("hide ")){
$ ("P. con"). addClass ("hide ");
}
});
});


OK. Test it locally and modify the css style!
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.