HTML <details> open 属性
open 属性规定在 HTML 页面上 details 应该是可见的。
1. 语法
<details open="open">
属性值
值 | 描述 |
---|---|
open | 规定在 HTML 页面上 details 应该是可见的。 |
2. 范例
可见的 details 元素:
<details open="open"
>
<summary>Copyright 2011.</summary>
<p>All pages and graphics on this web site are the property of W3School.</p>
</details>
3. HTML 4.01 与 HTML 5 之间的差异
open 属性是 HTML 5 中的新属性。
Details 对象表示 HTML <details> 元素。您可以通过使用 getElementById() 来访问 <details> 元素。