Movatterモバイル変換


[0]ホーム

URL:


menu
  1. Dart
  2. dart:html
  3. Node class
Node
description

Node class

Inheritance
Implementers
Annotations
  • @Native.new("Node")

Properties

baseUriString?
no setter
childNodesList<Node>
A list of this node's children.
no setter
firstChildNode?
The first child of this node.
no setter
hashCodeint
The hash code for this object.
no setterinherited
isConnectedbool?
no setter
lastChildNode?
The last child of this node.
no setter
nextNodeNode?
The next sibling node.
no setter
nodeNameString?
The name of this node.
no setter
nodesList<Node>
A modifiable list of this node's children.
getter/setter pair
nodeTypeint
The type of node.
no setter
nodeValueString?
The value of this node.
no setter
onEvents
This is an ease-of-use accessor for event streams which should only beused when an explicit accessor is not available.
no setterinherited
ownerDocumentDocument?
The document this node belongs to.
no setter
parentElement?
The parent element of this node.
no setter
parentNodeNode?
The parent node of this node.
no setter
previousNodeNode?
The previous sibling node.
no setter
runtimeTypeType
A representation of the runtime type of the object.
no setterinherited
textString?
All text within this node and its descendants.
getter/setter pair

Methods

addEventListener(Stringtype,EventListener?listener, [bool?useCapture])→ void
inherited
append(Nodenode)Node
Adds a node to the end of the childnodes list of this node.
clone(bool?deep)Node
Returns a copy of this node.
contains(Node?other)bool
Returns true if this node contains the specified node.
dispatchEvent(Eventevent)bool
inherited
getRootNode([Map?options])Node
hasChildNodes()bool
Returns true if this node has any children.
insertAllBefore(Iterable<Node>newNodes,Nodechild)→ void
Inserts all of the nodes into this node directly before child.
insertBefore(Nodenode,Node?child)Node
Inserts the given node into this node directly before child.If child isnull, then the given node is inserted at the endof this node's child nodes.
noSuchMethod(Invocationinvocation)→ dynamic
Invoked when a nonexistent method or property is accessed.
inherited
remove()→ void
Removes this node from the DOM.
removeEventListener(Stringtype,EventListener?listener, [bool?useCapture])→ void
inherited
replaceWith(NodeotherNode)Node
Replaces this node with another node.
toString()String
Print out a String representation of this Node.

Operators

operator ==(Objectother)bool
The equality operator.
inherited

Constants

ATTRIBUTE_NODE→ constint
CDATA_SECTION_NODE→ constint
COMMENT_NODE→ constint
DOCUMENT_FRAGMENT_NODE→ constint
DOCUMENT_NODE→ constint
DOCUMENT_TYPE_NODE→ constint
ELEMENT_NODE→ constint
ENTITY_NODE→ constint
ENTITY_REFERENCE_NODE→ constint
NOTATION_NODE→ constint
PROCESSING_INSTRUCTION_NODE→ constint
TEXT_NODE→ constint
  1. Dart
  2. dart:html
  3. Node class
dart:html library

[8]ページ先頭

©2009-2025 Movatter.jp