如何使用 jQuery 顯示和隱藏 HTML 元素?


利用 jQuery 隱藏和顯示 HTML 元素時,請使用 hide 和 show() 方法。此處,利用按鈕單擊隱藏和顯示 <p> 元素,

示例

實際演示

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("#visible").click(function(){
        $("p").show();
    });
     $("#hidden").click(function(){
        $("p").hide();
    });
});
</script>
</head>
<body>

<p>This text  will show on clicking "Show element" button, and hide on clicking "Hide element" button.</p>

<button id="hidden">Hide element</button>
<button id="visible">Show element</button>

</body>
</html>

更新時間:2020 年 6 月 15 日

1K+ 瀏覽次數

開啟你的 職業生涯

完成課程即可獲得認證

開始學習
廣告