Home  >  Article  >  Web Front-end  >  JQuery methods and code examples for displaying and hiding DIV_jquery

JQuery methods and code examples for displaying and hiding DIV_jquery

WBOY
WBOYOriginal
2016-05-16 16:03:431016browse

1. If it is hidden during loading:

Copy code The code is as follows:






2. Dynamic hiding and display:

Copy code The code is as follows:


               
               
                <?php echo $ini_array['time.one']?>    
                <?php echo $ini_array['time.day']?>    
                <?php echo $ini_array['time.week']?>    
                <?php echo $ini_array['time.month']?>    
               

               
               
               
                   

                    1     
                    2     

               
               
03     
                    04     

                                                                                               



Before the above code, you may also add this sentence:


Copy code The code is as follows:



Using jquery is really convenient. For example, if you want to control the display and hiding of divs, you can do it in one sentence. Please see the instructions below.
$("#id").show() means display:block,

$("#id").hide() means display:none;
$("#id").toggle() switches the visible state of the element. If the element is visible, switch it to hidden; if the element is hidden, switch it to visible.
$("#id").css('display','none');
$("#id").css('display','block');
or
$("#id")[0].style.display = 'none';

Statement:
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