aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/htmldetailselement/index.html
blob: 3e734f07adb6529ffecd9999e58a187d7d2366ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
title: HTMLDetailsElement
slug: Web/API/HTMLDetailsElement
translation_of: Web/API/HTMLDetailsElement
---
<p>{{APIRef("HTML DOM")}}</p>

<p><strong><code>HTMLDetailsElement</code></strong> 接口提供了特殊的属性 (除了常规的 {{domxref("HTMLElement")}} 接口之外,它还可以通过继承获得这些属性) 用于操作 {{HTMLElement("details")}} 元素.</p>

<p>{{InheritanceDiagram(600, 120)}}</p>

<h2 id="属性">属性</h2>

<p><em>从其父级 {{domxref("HTMLElement")}} 继承属性.</em></p>

<dl>
 <dt>{{domxref("HTMLDetailsElement.open")}}</dt>
 <dd>是一个 {{domxref("boolean")}} 反射 {{htmlattrxref("open", "details")}} HTML属性, 指示是否向用户显示元素的内容 (不包括 {{HTMLElement("summary")}})</dd>
</dl>

<h2 id="方法">方法</h2>

<p><em>没有特定的方法;继承其父方法 {{domxref("HTMLElement")}}.</em></p>

<h2 id="规格">规格</h2>

<ul>
 <li><a href="https://html.spec.whatwg.org/multipage/interactive-elements.html#htmldetailselement">HTML Living Standard</a></li>
 <li><a href="https://www.w3.org/TR/html52/interactive-elements.html#htmldetailselement">HTML 5.2 (W3C Proposed Recommendation)</a></li>
</ul>

<h2 id="浏览器兼容性">浏览器兼容性</h2>

<div>


<p>{{Compat("api.HTMLDetailsElement")}}</p>
</div>

<h2 id="另见">另见</h2>

<ul>
 <li>实现此接口的HTML元素: {{HTMLElement("details")}}</li>
</ul>