jQuery 隱藏和顯示LOGIN

jQuery 隱藏和顯示

jQuery hide() 和show()

透過jQuery,您可以使用hide() 和show() 方法來隱藏和顯示HTML 元素:

#實例

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js">
    </script>
    <script>
        $(document).ready(function(){
            $("#hide").click(function(){
                $("p").hide();
            });
            $("#show").click(function(){
                $("p").show();
            });
        });
    </script>
</head>
<body>
<p>如果你点击“隐藏” 按钮,我将会消失。</p>
<button id="hide">隐藏</button>
<button id="show">显示</button>
</body>
</html>

執行程式嘗試


#語法:

$(selector).hide(speed,callback);

$(selector).show(speed,callback);

可選的speed 參數規定隱藏/顯示的速度,可以取以下值:"slow(慢)"、"fast(快)" 或毫秒。

可選的 callback 參數是隱藏或顯示完成後所執行的函數名稱。

下面的範例示範了帶有speed 參數的hide() 方法:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js">
    </script>
    <script>
        $(document).ready(function(){
            $("button").click(function(){
                $("p").hide(1000);
            });
        });
    </script>
</head>
<body>
<button>隐藏</button>
<p>生活就是做出选择,一旦你做出了你的选择,你就必须活在你的决定中。</p>
</body>
</html>

執行程式嘗試


jQuery toggle( )

透過jQuery,您可以使用toggle() 方法來切換hide() 和show() 方法。

顯示被隱藏的元素,並隱藏已顯示的元素:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js">
    </script>
    <script>
        $(document).ready(function(){
            $("button").click(function(){
                $("p").toggle();
            });
        });
    </script>
</head>
<body>
<button>隐藏/显示</button>
<p>真正的失败不是你没有做成事,而是你甘心于失败。</p>
<p>一切都会好起来的,即使不是在今天,总有一天会的。</p>
</body>
</html>

執行程式嘗試


##語法:

$(selector).toggle(speed,callback);

可選的speed 參數規定隱藏/顯示的速度,可以取下列值: "slow"、"fast" 或毫秒。

可選的 callback 參數是 toggle() 方法完成後所執行的函數名稱。



下一節

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("p").toggle(); }); }); </script> </head> <body> <button>隐藏/显示</button> <p>真正的失败不是你没有做成事,而是你甘心于失败。</p> <p>一切都会好起来的,即使不是在今天,总有一天会的。</p> </body> </html>
章節課件