blob: bf95530d6719ac6cee48338aca296a9c7bc49f66 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
---
title: Comment
slug: Web/API/Comment
tags:
- API
- DOM
- 参考
- 注释
translation_of: Web/API/Comment
---
<div>{{ ApiRef("DOM") }}</div>
<p><span class="seoSummary"><code><strong>Comment</strong></code> 接口代表标签(markup)之间的文本符号(textual notations)。尽管它通常不会显示出来,但是在查看源码时可以看到它们。</span>在 HTML 和 XML 里,注释(Comments)为 '<code><!--</code>' 和 '<code>--></code>' 之间的内容。在 XML 里,注释中不能出现字符序列 '<code>--</code>'。</p>
<h2 id="属性">属性</h2>
<p><em>该接口没有特定的属性,但是从其父类 {{domxref("CharacterData")}} 继承属性,以及间接从 {{domxref("Node")}} 继承部分属性。</em></p>
<h2 id="构造函数">构造函数</h2>
<dl>
<dt>{{ domxref("Comment.Comment()", "Comment()") }} {{experimental_inline}}</dt>
<dd>使用文本内容作为参数,返回一个 <code>Comment</code> 对象。</dd>
</dl>
<h2 id="方法">方法</h2>
<p>该接口没有特定的方法,但从其父类 {{domxref("CharacterData")}} 继承方法,以及间接从 {{domxref("Node")}} 继承部分方法。</p>
<h2 id="规范">规范</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('DOM WHATWG', '#comment', 'Comment')}}</td>
<td>{{Spec2('DOM WHATWG')}}</td>
<td>Added the constructor.</td>
</tr>
<tr>
<td>{{SpecName('DOM3 Core', 'core.html#ID-1728279322', 'Comment')}}</td>
<td>{{Spec2('DOM3 Core')}}</td>
<td>No change from {{SpecName('DOM2 Core')}}</td>
</tr>
<tr>
<td>{{SpecName('DOM2 Core', 'core.html#ID-1728279322', 'Comment')}}</td>
<td>{{Spec2('DOM2 Core')}}</td>
<td>No change from {{SpecName('DOM1')}}</td>
</tr>
<tr>
<td>{{SpecName('DOM1', 'level-one-core.html#ID-1728279322', 'Comment')}}</td>
<td>{{Spec2('DOM1')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("api.Comment")}}</p>
<h2 id="参见">参见</h2>
<ul>
<li><a href="/zh-CN/docs/Web/API/Document_Object_Model#DOM_%E6%8E%A5%E5%8F%A3">DOM 接口索引</a></li>
</ul>
|