Click jQuery to close simple instances of the pop-up layer.

Source: Internet
Author: User

Click jQuery to close simple instances of the pop-up layer.

This article mainly introduces the simple example of closing the pop-up layer by clicking jQuery outside of itself. If you need some help, please refer to it.

The main function is to click to display, and then close the display effect by clicking any location on the page. It is mainly used by $ (document). click.

 

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:

<Div class = "down"> click </div>

<Div class = "con hide"> show-area </div>

 

CSS code:

. Hide {display: none ;}

 

JS Code

 

The Code is as follows:

$ (Document). ready (function (){

$ ("Div. down"). click (function (e ){

E. stopPropagation ();

$ ("Div. con"). removeClass ("hide ");

});

$ (Document). click (function (){

If (! $ ("Div. con"). hasClass ("hide ")){

$ ("Div. con"). addClass ("hide ");

}

});

});

 

OK. Test it locally and modify the css style!

 

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.