如何使用 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>
廣告