DOM TableHeader abbr屬性用於設置或返回abbr屬性的值。 abbr屬性用於在標題單元格中指定內容的較短版本。它對普通的Web瀏覽器沒有視覺效果,可以由屏幕閱讀器使用。
用法:
- 它返回abbr屬性。
tableheaderObject.abbr
- 它用於設置abbr屬性。
tableheaderObject.abbr = text
屬性值:它包含值,即指定標題內容單元格簡短描述的文本。
返回值:它返回一個字符串值,該字符串值表示標題內容單元格的簡短描述。
示例1:本示例返回abbr屬性。
<!DOCTYPE html>
<html>
<head>
<!-- style to set border -->
<style>
table,
th,
td {
border:1px solid black;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>
DOM TableHeader abbr Property
</h2>
<table>
<tr>
<th id="table"
abbr="GeeksforGeeks">
Username
</th>
</tr>
<tr>
<td>geeks</td>
</tr>
</table>
<br>
<button onclick="myGeeks()">
Click Here!
</button>
<p id="sudo"
style="font-size:25px;
color:green">
</p>
<!-- Script to access th element -->
<script>
function myGeeks() {
var tab = document.getElementById(
"table").abbr;
document.getElementById(
"sudo").innerHTML = tab;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
示例2:本示例設置abbr屬性。
<!DOCTYPE html>
<html>
<head>
<!-- style to set border -->
<style>
table,
th,
td {
border:1px solid black;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>
DOM TableHeader abbr Property
</h2>
<table>
<tr>
<th id="table"
abbr="GeeksforGeeks">
Username
</th>
</tr>
<tr>
<td>geeks</td>
</tr>
</table>
<br>
<button onclick="myGeeks()">
Click Here!
</button>
<p id="sudo"
style="font-size:25px;
color:green">
</p>
<!-- Script to access th element -->
<script>
function myGeeks() {
var tab = document.getElementById(
"table").abbr = "GeeksUser";
document.getElementById(
"sudo").innerHTML =
"The value of the abbr attribute was changed to "
+ tab;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊“打開”按鈕後:
支持的瀏覽器:
- 穀歌瀏覽器
- Internet Explorer 10.0+
- Opera
- 蘋果Safari
- 火狐瀏覽器
相關用法
- HTML TableHeader cellIndex用法及代碼示例
- HTML DOM TableHeader用法及代碼示例
- HTML <abbr>用法及代碼示例
- HTML <td> abbr屬性用法及代碼示例
- HTML <th> abbr屬性用法及代碼示例
- HTML DOM dir用法及代碼示例
- HTML DOM specified用法及代碼示例
- HTML Map name用法及代碼示例
- HTML li value用法及代碼示例
- HTML Bdo dir用法及代碼示例
- HTML DOM id用法及代碼示例
- HTML DOM name用法及代碼示例
- HTML DOM URL用法及代碼示例
- HTML DOM value用法及代碼示例
- HTML DOM childElementCount用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM TableHeader abbr Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。