HTMLDetailsElement - 操作 <details> 元素的接口

HTMLDetailsElement 接口提供了特殊的属性(除了通过继承通用的 HTMLElement 接口获得的常规属性)来操作 <details> 元素。

属性

属性继承自父类 HTMLElement

HTMLDetailsElement.open

一个 boolean,表示 HTML 属性 open, 表示元素的内容(不包括 <summary>)将被显示给用户。

方法

没有特有的方法; 所有方法继承自父类 HTMLElement

规范

桌面浏览器兼容性

特性 Chrome Edge Firefox Internet Explorer Opera Safari
基础支持 ? ? ? ? ? ?

移动浏览器兼容性

特性 Android Edge Firefox Mobile IE Mobile Opera Mobile Safari Mobile
基础支持 ? ? ? ? ? ?

相关链接

  • 实现该接口的 HTML 元素:<details>