Blogger Information
Blog 35
fans 0
comment 1
visits 42643
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
js实现隐藏显示
魏先生的博客
Original
1634 people have browsed it

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>的撒的撒</title>
        <script src="https://cdn.jsdelivr.net/npm/vue"></script>
        <style type="text/css">
            .show{
                width: 90px;
                height: 90px;
                background-color: red;
            }
            .show{
                display: block;
            }
            .hide{
                display: none;
            }
        </style>
    </head>
    <body>
        <button  type='button' id='btn'>隐藏</button>
        <div id="demo" class="show">
            
        </div>
        <script type="text/javascript">
            var btn = document.getElementById('btn');
            
            var div = document.getElementById('demo');
            
            btn.onclick = function(){
                if(this.innerHTML === '隐藏'){
                    this.innerHTML = '显示';
                    div.className = 'hide';    
                }else{
                    this.innerHTML = '隐藏';
                    div.className = 'show';
                }
            }
        </script>

    </body>
</html>


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post