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
73
74
75
|
---
title: Comment
slug: Web/API/Comment
tags:
- API
- DOM
- Referências
- comentários
translation_of: Web/API/Comment
---
<div>{{ ApiRef("DOM") }}</div>
<p><span class="seoSummary">La interfaz <code><strong>Comment</strong></code> representa las anotaciones y comentarios dentro del código fuente; aunque generalmente no se muestran visualmente en el navegador, dichos comentarios están disponibles para ser leídos en la<strong> <a href="/es/docs/Tools/View_source">vista de código</a></strong>.<br>
Los comentarios se representan en HTML y XML como contenido entre '<!--' y '-->'. En XML, la secuencia de caracteres '--' no se puede usar dentro de un comentario.</span></p>
<p>{{InheritanceDiagram}}</p>
<h2 id="Propiedades">Propiedades</h2>
<p><em>Esta interfaz no tiene ninguna propiedad específica, pero hereda las de su padre,{{domxref("CharacterData")}}, e indirectamente los de {{domxref("Node")}}.</em></p>
<h2 id="Constructor">Constructor</h2>
<dl>
<dt>{{ domxref("Comment.Comment()", "Comment()") }} {{experimental_inline}}</dt>
<dd>Devuelve un objeto <code>Comment</code> con el contenido del comentario como parámetro.</dd>
</dl>
<h2 id="Métodos">Métodos</h2>
<p><em>Esta interfaz no tiene ninguna propiedad específica, pero hereda las de su padre,{{domxref("CharacterData")}}, e indirectamente los de {{domxref("Node")}}.</em></p>
<h2 id="Specification" name="Specification">Especificaciones</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>Agregado el constructor.</td>
</tr>
<tr>
<td>{{SpecName('DOM3 Core', 'core.html#ID-1728279322', 'Comment')}}</td>
<td>{{Spec2('DOM3 Core')}}</td>
<td>Sin cambios de {{SpecName('DOM2 Core')}}</td>
</tr>
<tr>
<td>{{SpecName('DOM2 Core', 'core.html#ID-1728279322', 'Comment')}}</td>
<td>{{Spec2('DOM2 Core')}}</td>
<td>Sin cambios de {{SpecName('DOM1')}}</td>
</tr>
<tr>
<td>{{SpecName('DOM1', 'level-one-core.html#ID-1728279322', 'Comment')}}</td>
<td>{{Spec2('DOM1')}}</td>
<td>Definición inicial</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilidad_entre_navegadores">Compatibilidad entre navegadores</h2>
<p>{{Compat("api.Comment")}}</p>
<h2 id="Lea_también">Lea también</h2>
<ul>
<li><a href="/en-US/docs/Web/API/Document_Object_Model" title="/en-US/docs/DOM/DOM_Reference">Índice de interfaces DOM</a></li>
</ul>
|