HTML DOM Details オブジェクト

Details オブジェクト

Details オブジェクトは HTML <details> 要素を表します。

Details オブジェクトのアクセス

getElementById() を使用して <details> 要素にアクセスできます:

var x = document.getElementById("myDetails");

実際に試してみてください

Details オブジェクトの作成

document.createElement() メソッドを使用して <details> 要素を作成できます:

var x = document.createElement("DETAILS");

実際に試してみてください

Details オブジェクトの属性

属性 説明
open details がユーザーにとって可視であるかどうかを設定または返します。

標準属性およびイベント

Details オブジェクトがサポートする標準属性およびイベント

関連ページ

HTML リファレンスマニュアル:HTML <details> タグ