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

更新於:2020 年 2 月 17 日

4K+ 瀏覽量

開啟您的職業生涯

完成課程後獲得證書

開始
廣告
© . All rights reserved.