Home > Web Front-end > JS Tutorial > body text

JQuery methods and code examples for displaying and hiding DIV_jquery

WBOY
Release: 2016-05-16 16:03:43
Original
1058 people have browsed it

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';

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template