Click me Click me
Home > Article > Web Front-end > How to show hidden controls in jquery
jQuery is an excellent JavaScript library. It provides us with many convenient and quick operation methods, including displaying and hiding controls. This article will introduce how to display and hide controls through jQuery.
1. How to hide controls
The hide() method is the most basic method of hiding controls provided by jQuery. It can hide any HTML element. For example, suppose you have a button:
To hide this button, just call the hide() method:
$("#myButton").hide();
This will make the button no longer appear on the page.
The fadeOut() method will gradually reduce the opacity of the element until the element is completely hidden. You can control its speed and time by setting the parameters of the fadeOut() method.
For example:
$("#myButton").fadeOut(1000);
This will make the button disappear in 1 second.
The slideUp() method can slide the element upward until it is completely hidden. Like the fadeOut() method, you can control its speed and time by setting parameters.
For example:
$("#myButton").slideUp(1000);
This will make the button slide up and disappear within 1 second.
2. How to display controls
The show() method is a method similar to the hide() method and is used to Display any HTML element. For example, if you want to show a hidden button:
To show For this button, you only need to call the show() method:
$("#myButton").show();
This will make the button re-display on the page.
The fadeIn() method can make an element from opaque to fully visible, which is the opposite of the fadeOut() method. Its speed and time can also be controlled by setting parameters.
For example:
$("#myButton").fadeIn(1000);
This will make the button go from transparent to fully visible in 1 second.
The slideDown() method can slide the element down until it is completely visible. Like the fadeIn() method, you can control its speed and time by setting parameters.
For example:
$("#myButton").slideDown(1000);
This will make the button slide down and become visible within 1 second.
Summary:
Through jQuery, we can show and hide controls easily and quickly. Whether hiding or showing, jQuery provides a variety of methods to achieve it. By using these methods flexibly, we can easily control the appearance of web page elements. Hope this article helps you!
The above is the detailed content of How to show hidden controls in jquery. For more information, please follow other related articles on the PHP Chinese website!