如何使用 jQuery 在 HTML 元素中添加 display:none?
要变通地在 jQuery 中以 display: none 方式处理元素,可以使用 hide() 方法。该方法会执行相同的工作。
示例
可以尝试运行以下代码,了解如何在 HTML 元素中添加 display:none −
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("p").removeAttr("style").hide(); }); }); </script> </head> <body> <h1>Heading 1</h1> <p style="font-size:15px">This is demo text. This will hide on button click.</p> <p>This is another text. This will hide on button click</p> <button>Hide</button> </body> </html>
广告