HTML DOM中的樣式可見性屬性用於設置元素的可見性,用於隱藏或顯示元素。它返回賦予元素的可見性屬性。
用法:
- 它返回可見性屬性。
object.style.visibility
- 它用於設置可見性屬性。
object.style.visibility = "visible|hidden|collapse|initial| inherit"
屬性值:
- visible:用於指定可見的元素。它是默認值。
- hidden:元素不可見,但會影響布局。
- collapse:當在表行或單元格上使用元素時,它將隱藏該元素。
- intial:它將可見性屬性設置為其默認值。
- inherit:此屬性從其父元素繼承。
返回值:它返回一個字符串,該字符串表示元素要顯示或不顯示的內容。
示例1:
<!DOCTYPE html>
<html>
<head>
<title>DOM Style visibility Property </title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOM Style visibility Property </h2>
<p id="gfg"> A Computer science portal for geeks</p>
<button type="button" onclick="geeks()">
Change visibility
</button>
<script>
function geeks() {
document.getElementById(
"gfg").style.visibility = "hidden";
}
</script>
</center>
</body>
</html>
輸出:
- 在單擊按鈕之前:
-
單擊按鈕後:
示例2:
<!DOCTYPE html>
<html>
<head>
<title>DOM Style visibility Property </title>
</head>
<body>
<center>
<h1 style="color:green;;">
GeeksForGeeks
</h1>
<h2>DOM Style visibility Property </h2>
<p id="gfg" style="visibility:hidden;">
A Computer science portal for geeks</p>
<button type="button" onclick="geeks()">
Change visibility
</button>
<p id="y"></p>
<script>
function geeks() {
var x = document.getElementById(
"gfg").style.visibility;
document.getElementById('y').innerHTML = x;
}
</script>
</center>
</body>
</html>
輸出:
- 在單擊按鈕之前:
- 單擊按鈕後:
支持的瀏覽器:下麵列出了DOM樣式可見性屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- 蘋果Safari
相關用法
- HTML Style right用法及代碼示例
- HTML Style top用法及代碼示例
- HTML Style borderLeftStyle用法及代碼示例
- HTML Style borderImageSlice用法及代碼示例
- HTML Style fontStyle用法及代碼示例
- HTML Style borderTopLeftRadius用法及代碼示例
- HTML Style tabSize用法及代碼示例
- HTML Style fontVariant用法及代碼示例
- HTML Style borderRightStyle用法及代碼示例
- HTML Style maxWidth用法及代碼示例
- HTML Style font用法及代碼示例
- HTML Style textDecorationLine用法及代碼示例
- HTML Style listStylePosition用法及代碼示例
- HTML Style fontSize用法及代碼示例
注:本文由純淨天空篩選整理自bestharadhakrishna大神的英文原創作品 HTML | DOM Style visibility Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。