HTMLDOMTableDataオブジェクト
HTML DOM TableDataオブジェクトは、HTMLドキュメントの
TableDataオブジェクトを作成する
構文
以下は構文です-
document.createElement(“TD”);
TableDataオブジェクトのプロパティ
プロパティ | 説明 |
---|---|
cellIndex | テーブル行のセルコレクション内のセルの位置を返します。 |
colSpan | テーブルのcolspan属性の値を返し、変更します。 |
ヘッダー | テーブルのheaders属性の値を返し、変更します。 |
rowSpan | テーブルのrowspan属性の値を返し、変更します。 |
TableDataオブジェクトの例を見てみましょう-
例
<!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 TableData Object Demo</h1> <table border="2"> <thead> <tr> <th>Name</th> <th>Language</th> </tr> <thead> <tbody> <tr> <td>John</td> <td>English</td> </tr> <tr> <td>Elon</td> <td>Germany</td> </tr> <tr class="new-row"> </tr> </tbody> </table> <button onclick="get()" class="btn">Create a TableData</button> <script> function get() { var td1 = document.createElement("TD"); var td2 = document.createElement("TD"); td1.innerHTML = "Mario"; td2.innerHTML = "French"; document.querySelector('.new-row').appendChild(td1); document.querySelector('.new-row').appendChild(td2); } </script> </body> </html>
出力
「テーブルデータの作成」をクリックします 」ボタンをクリックして、TableDataオブジェクトを作成します。
-
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