Adobe Extending Dreamweaver CS4 Manual do Utilizador Página 108

  • Descarregar
  • Adicionar aos meus manuais
  • Imprimir
  • Página
    / 387
  • Índice
  • MARCADORES
  • Avaliado. / 5. Com base em avaliações de clientes
Vista de página 107
102
EXTENDING DREAMWEAVER CS4
The Dreamweaver Document Object Model
Properties and methods of text objects
Each contiguous block of text in an HTML document (for example, the text within a p tag) is represented by a
JavaScript object. Text objects never have children. The following table describes the properties and methods of text
objects that are taken from DOM Level 1 and used in Dreamweaver. A bullet (•) marks read-only properties.
Properties and methods of comment objects
A JavaScript object represents each HTML comment. The following table details the properties and methods of
comment objects that are taken from DOM Level 1 and are used in Dreamweaver. A bullet (•) marks read-only
properties.
getElementsByAttributeName(attrName) A NodeList that can be used to step through elements with an attribute
attrName (for example, all elements with the attribute "for"). Not part of
DOM Level 1 or 2.
hasChildNodes() A Boolean value that indicates whether the tag has any children.
hasTranslatedAttributes() A Boolean value that indicates whether the tag has any translated attributes.
(This property is not included in DOM Level 1; it was added to Dreamweaver
3 to support attribute translation.)
Property or method Return value
nodeType Node.TEXT_NODE
parentNode The parent tag
child Nodes An empty
previousSibling The sibling node immediately prior to this one. For example, in the code <p>blah<br
/>blah</p>
, the <p> tag has three child nodes (text node, element node, text node). The
previousSibling of the third child is the <br /> tag; the previousSibling of the first
child is
null.
nextSibling The sibling node immediately following this one. For example, in the code <p>blah<br
/>blah</p>
, the nextSibling of the first child of the p tag is the <br /> tag; the
nextSibling of the third child is null.
data The actual text string. Entities in the text are represented as a single character (for example,
the text
Joseph &amp; I is returned as Joseph & I).
hasChildNodes() false
Property or method Return value
nodeType Node.COMMENT_NODE
parentNode The parent tag
childNodes An empty NodeList array
previousSibling The sibling node immediately prior to this one.
nextSibling The sibling node immediately following this one.
data The text string between the comment markers (<!-- and -->)
hasChildNodes() false
Property or method Return value
Vista de página 107
1 2 ... 103 104 105 106 107 108 109 110 111 112 113 ... 386 387

Comentários a estes Manuais

Sem comentários