首頁  >  文章  >  web前端  >  javascript中rows是什麼意思

javascript中rows是什麼意思

WBOY
WBOY原創
2022-03-10 15:38:374436瀏覽

在JavaScript中,rows是「行」的意思,rows集合傳回表格中所有行的一個數組,能夠傳回集合中tr元素的數目,該集合包括thead、tfoot和tbody中定義的所有行,語法為“tableObject.rows”。

javascript中rows是什麼意思

本教學操作環境:windows10系統、javascript1.8.5版、Dell G3電腦。

javascript中rows是什麼意思

rows 集合傳回表格中所有行(TableRow 物件)的一個陣列,即一個 HTMLCollection。

此集合包括 、

 和   中定義的所有行。

語法

tableObject.rows[]

範例如下:

<html>
<head>
<meta charset="utf-8">
<title>1234</title>
<script>
function displayResult(){
    alert(document.getElementById("myTable").rows.length);
}
</script>
</head>
<body>
<table id="myTable" border="1">
    <tr>
        <td>cell 1</td>
        <td>cell 2</td>
    </tr>
    <tr>
        <td>cell 3</td>
        <td>cell 4</td>
    </tr>
</table>
<br>
<button type="button" onclick="displayResult()">显示表的行数</button>
</body>
</html>

輸出結果:

javascript中rows是什麼意思

#點擊按鈕後:

javascript中rows是什麼意思

相關推薦:javascript學習教學

#

以上是javascript中rows是什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn