如何使用 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>
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP