HTMLDOMTableRowオブジェクト
HTML DOM TableRowオブジェクトは、HTMLドキュメントの
TableRowオブジェクトを作成する
構文
以下は構文です-
document.createElement(“TR”);
TableRowオブジェクトのプロパティ
プロパティ | 説明 |
---|---|
rowIndex | テーブルのrowsコレクション内の行の位置を返します。 |
sectionRowIndex | thead、tbody、またはtfootのrowsコレクション内の行の位置を返します。 |
TableRowオブジェクトのメソッド
メソッド | 説明 |
---|---|
deleteCell() | 現在のテーブル行からセルを削除します。 |
insertCell() | 現在のテーブル行にセルを追加します。 |
TableRowオブジェクトの例を見てみましょう:
例
<!DOCTYPE html> <html> <style> body { color: #000; background: lightblue; height: 100vh; text-align: center; } table { margin: 2rem auto; width: 400px; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 2px; width: 40%; display: block; color: #fff; outline: none; cursor: pointer; margin: 1rem auto; } </style> <body> <h1>DOM TableRow Object Demo</h1> <table border="2"> <thead> <tr> <th>Name</th> <th>Language</th> </tr> <thead> <tbody class="table-body"> <tr> <td>John</td> <td>English</td> </tr> <tr> <td>Elon</td> <td>Germany</td> </tr> </tbody> </table> <button onclick="get()" class="btn">Create TableRow</button> <script> function get() { var tr = document.createElement("TR"); tr.innerHTML = "<td>Mario</td><td>French</td>" document.querySelector(".table-body").appendChild(tr); } </script> </body> </html>
出力
「テーブル行の作成」をクリックして、テーブル行を作成します。
-
HTMLDOMHRオブジェクト
HTML DOM HRオブジェクトは、HTMLドキュメントの要素を表します。 hrオブジェクトを作成- 構文 以下は構文です- document.createElement(“HR”); hrオブジェクトの例を見てみましょう- 例 <!DOCTYPE html> <html> <style> body { text-align: center; background-color: #fff;
-
HTMLDOMUlオブジェクト
HTMLのHTMLDOMUlオブジェクトは、 を表します 要素。 を作成する 要素 var ulObject = document.createElement(“UL”) ここでは、「ulObject」 次のプロパティを持つことができますが、 HTML5ではサポートされていません − プロパティ 説明 コンパクト 順不同リストを通常より小さく表示するかどうかを設定/返します タイプ 順序付けされていないリストのtype属性の値を設定/返します 順不同リストの例を見てみましょう 要素- 例 <!DOCTYPE