Example of how jquery judges the current status of toggle

Source: Internet
Author: User
The code is as follows: Copy code

If ($ ("# phpernote"). is (": hidden ")){
// The current hide status
} Else {
// The current status is show.
}

The above can also be replaced by slideToggle

The code is as follows: Copy code

$ (This). slideToggle ("slow", function (){
If ($ (this). is (': Den ')){
Alert ("hidden ");
}
});

The callback function is used to determine whether the current element is hidden.

Reset toggle status

The code is as follows: Copy code

$ ('# Toggled'). toggle (fn1, fn2 );
$ ('# Clear'). click (function (){
$ ('# Toggled'). unbind ('click'). toggle (fn1, fn2 );
});

For example, when you click a button or an element, hide and display the other element.

In jQuery, toggle () is very simple for us;
We will use two buttons bnt1 and btn2 before:

The code is as follows: Copy code
$ (". Btn1 "). click (function () {$ ("p "). hide () ;}); $ (". btn2 "). click (function () {$ ("p "). show ();});
After using toggle (), click it to display and hide the image;
$ (". Btn1"). click (function () {$ ("p"). toggle ();});

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.