如何在 HTML 元素中使用 jQuery 添加 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>

更新于:17-Feb-2020

4K+ 查看

开启 职业生涯

完成课程,获得认证

立即开始
广告