Table tBodies 集合
Table 對象定義和用法
tBodies 集合返回表格 <tbody> 元素的集合。
注意: 集合中的元素以它們出現(xiàn)在源代碼位置進行排序。
語法
tableObject.tBodies
Properties
屬性 | 描述 |
---|---|
length | 返回集合中 <tbody> 元素的數(shù)目。 |
方法
方法 | 描述 |
---|---|
[name_or_index] | 一個整數(shù),指定元素檢索位置(從0開始) |
item(name_or_index) | 返回集合中的指定索引的元素 |
namedItem(name) | 返回集合中指定名稱的元素 |
瀏覽器支持
所有主要瀏覽器都支持 tBodies 集合
實例
實例
顯示表格中tbodies的數(shù)目:
<html>
<head>
<script>
function displayResult()
{
alert(document.getElementById("myTable").tBodies.length);
}
</script>
</head>
<body>
<table id="myTable" border="1">
<tbody>
<tr>
<td>cell 1</td>
<td>cell 2</td>
</tr>
</tbody>
<tbody>
<tr>
<td>cell 3</td>
<td>cell 4</td>
</tr>
</tbody>
</table>
<br>
<button type="button" onclick="displayResult()">Show number of tbodies intable</button>
</body>
</html>
<head>
<script>
function displayResult()
{
alert(document.getElementById("myTable").tBodies.length);
}
</script>
</head>
<body>
<table id="myTable" border="1">
<tbody>
<tr>
<td>cell 1</td>
<td>cell 2</td>
</tr>
</tbody>
<tbody>
<tr>
<td>cell 3</td>
<td>cell 4</td>
</tr>
</tbody>
</table>
<br>
<button type="button" onclick="displayResult()">Show number of tbodies intable</button>
</body>
</html>
嘗試一下 ?
更多實例
Table 對象
更多建議: