Aller au contenu

ExecNode

Ce contenu n’est pas encore disponible dans votre langue.

Classes

ExecNode

Extends

Constructors

new ExecNode()
new ExecNode(): ExecNode
Returns

ExecNode

Inherited from

Node.constructor

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16516

Properties

ATTRIBUTE_NODE
readonly ATTRIBUTE_NODE: 2;
Inherited from

Node.ATTRIBUTE_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16483

baseURI
readonly baseURI: string;

Returns node’s node document’s document base URL.

MDN Reference

Inherited from

Node.baseURI

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16352

CDATA_SECTION_NODE
readonly CDATA_SECTION_NODE: 4;

node is a CDATASection node.

Inherited from

Node.CDATA_SECTION_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16487

childNodes
readonly childNodes: NodeListOf<ChildNode>;

Returns the children.

MDN Reference

Inherited from

Node.childNodes

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16358

COMMENT_NODE
readonly COMMENT_NODE: 8;

node is a Comment node.

Inherited from

Node.COMMENT_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16493

DOCUMENT_FRAGMENT_NODE
readonly DOCUMENT_FRAGMENT_NODE: 11;

node is a DocumentFragment node.

Inherited from

Node.DOCUMENT_FRAGMENT_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16499

DOCUMENT_NODE
readonly DOCUMENT_NODE: 9;

node is a document.

Inherited from

Node.DOCUMENT_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16495

DOCUMENT_POSITION_CONTAINED_BY
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;

Set when other is a descendant of node.

Inherited from

Node.DOCUMENT_POSITION_CONTAINED_BY

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16510

DOCUMENT_POSITION_CONTAINS
readonly DOCUMENT_POSITION_CONTAINS: 8;

Set when other is an ancestor of node.

Inherited from

Node.DOCUMENT_POSITION_CONTAINS

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16508

DOCUMENT_POSITION_DISCONNECTED
readonly DOCUMENT_POSITION_DISCONNECTED: 1;

Set when node and other are not in the same tree.

Inherited from

Node.DOCUMENT_POSITION_DISCONNECTED

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16502

DOCUMENT_POSITION_FOLLOWING
readonly DOCUMENT_POSITION_FOLLOWING: 4;

Set when other is following node.

Inherited from

Node.DOCUMENT_POSITION_FOLLOWING

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16506

DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
Inherited from

Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16511

DOCUMENT_POSITION_PRECEDING
readonly DOCUMENT_POSITION_PRECEDING: 2;

Set when other is preceding node.

Inherited from

Node.DOCUMENT_POSITION_PRECEDING

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16504

DOCUMENT_TYPE_NODE
readonly DOCUMENT_TYPE_NODE: 10;

node is a doctype.

Inherited from

Node.DOCUMENT_TYPE_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16497

ELEMENT_NODE
readonly ELEMENT_NODE: 1;

node is an element.

Inherited from

Node.ELEMENT_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16482

ENTITY_NODE
readonly ENTITY_NODE: 6;
Inherited from

Node.ENTITY_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16489

ENTITY_REFERENCE_NODE
readonly ENTITY_REFERENCE_NODE: 5;
Inherited from

Node.ENTITY_REFERENCE_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16488

firstChild
readonly firstChild: null | ChildNode;

Returns the first child.

MDN Reference

Inherited from

Node.firstChild

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16364

isConnected
readonly isConnected: boolean;

Returns true if node is connected and false otherwise.

MDN Reference

Inherited from

Node.isConnected

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16370

lastChild
readonly lastChild: null | ChildNode;

Returns the last child.

MDN Reference

Inherited from

Node.lastChild

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16376

nextSibling
readonly nextSibling: null | ChildNode;

Returns the next sibling.

MDN Reference

Inherited from

Node.nextSibling

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16382

nodeName
readonly nodeName: string;

Returns a string appropriate for the type of node.

MDN Reference

Inherited from

Node.nodeName

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16388

nodeType
readonly nodeType: number;

Returns the type of node.

MDN Reference

Inherited from

Node.nodeType

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16394

nodeValue
nodeValue: null | string;

MDN Reference

Inherited from

Node.nodeValue

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16396

NOTATION_NODE
readonly NOTATION_NODE: 12;
Inherited from

Node.NOTATION_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16500

ownerDocument
readonly ownerDocument: null | Document;

Returns the node document. Returns null for documents.

MDN Reference

Inherited from

Node.ownerDocument

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16402

parentElement
readonly parentElement: null | HTMLElement;

Returns the parent element.

MDN Reference

Inherited from

Node.parentElement

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16408

parentNode
readonly parentNode: null | ParentNode;

Returns the parent.

MDN Reference

Inherited from

Node.parentNode

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16414

previousSibling
readonly previousSibling: null | ChildNode;

Returns the previous sibling.

MDN Reference

Inherited from

Node.previousSibling

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16420

PROCESSING_INSTRUCTION_NODE
readonly PROCESSING_INSTRUCTION_NODE: 7;

node is a ProcessingInstruction node.

Inherited from

Node.PROCESSING_INSTRUCTION_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16491

TEXT_NODE
readonly TEXT_NODE: 3;

node is a Text node.

Inherited from

Node.TEXT_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16485

textContent
textContent: null | string;

MDN Reference

Inherited from

Node.textContent

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16422

ATTRIBUTE_NODE
readonly static ATTRIBUTE_NODE: 2;
Inherited from

Node.ATTRIBUTE_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16519

CDATA_SECTION_NODE
readonly static CDATA_SECTION_NODE: 4;

node is a CDATASection node.

Inherited from

Node.CDATA_SECTION_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16523

COMMENT_NODE
readonly static COMMENT_NODE: 8;

node is a Comment node.

Inherited from

Node.COMMENT_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16529

DOCUMENT_FRAGMENT_NODE
readonly static DOCUMENT_FRAGMENT_NODE: 11;

node is a DocumentFragment node.

Inherited from

Node.DOCUMENT_FRAGMENT_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16535

DOCUMENT_NODE
readonly static DOCUMENT_NODE: 9;

node is a document.

Inherited from

Node.DOCUMENT_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16531

DOCUMENT_POSITION_CONTAINED_BY
readonly static DOCUMENT_POSITION_CONTAINED_BY: 16;

Set when other is a descendant of node.

Inherited from

Node.DOCUMENT_POSITION_CONTAINED_BY

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16546

DOCUMENT_POSITION_CONTAINS
readonly static DOCUMENT_POSITION_CONTAINS: 8;

Set when other is an ancestor of node.

Inherited from

Node.DOCUMENT_POSITION_CONTAINS

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16544

DOCUMENT_POSITION_DISCONNECTED
readonly static DOCUMENT_POSITION_DISCONNECTED: 1;

Set when node and other are not in the same tree.

Inherited from

Node.DOCUMENT_POSITION_DISCONNECTED

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16538

DOCUMENT_POSITION_FOLLOWING
readonly static DOCUMENT_POSITION_FOLLOWING: 4;

Set when other is following node.

Inherited from

Node.DOCUMENT_POSITION_FOLLOWING

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16542

DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC
readonly static DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
Inherited from

Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16547

DOCUMENT_POSITION_PRECEDING
readonly static DOCUMENT_POSITION_PRECEDING: 2;

Set when other is preceding node.

Inherited from

Node.DOCUMENT_POSITION_PRECEDING

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16540

DOCUMENT_TYPE_NODE
readonly static DOCUMENT_TYPE_NODE: 10;

node is a doctype.

Inherited from

Node.DOCUMENT_TYPE_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16533

ELEMENT_NODE
readonly static ELEMENT_NODE: 1;

node is an element.

Inherited from

Node.ELEMENT_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16518

ENTITY_NODE
readonly static ENTITY_NODE: 6;
Inherited from

Node.ENTITY_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16525

ENTITY_REFERENCE_NODE
readonly static ENTITY_REFERENCE_NODE: 5;
Inherited from

Node.ENTITY_REFERENCE_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16524

NOTATION_NODE
readonly static NOTATION_NODE: 12;
Inherited from

Node.NOTATION_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16536

PROCESSING_INSTRUCTION_NODE
readonly static PROCESSING_INSTRUCTION_NODE: 7;

node is a ProcessingInstruction node.

Inherited from

Node.PROCESSING_INSTRUCTION_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16527

TEXT_NODE
readonly static TEXT_NODE: 3;

node is a Text node.

Inherited from

Node.TEXT_NODE

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16521

Methods

addEventListener()
addEventListener(
type,
callback,
options?): void

Appends an event listener for events whose type attribute value is type. The callback argument sets the callback that will be invoked when the event is dispatched.

The options argument sets listener-specific options. For compatibility this can be a boolean, in which case the method behaves exactly as if the value was specified as options’s capture.

When set to true, options’s capture prevents callback from being invoked when the event’s eventPhase attribute value is BUBBLING_PHASE. When false (or not present), callback will not be invoked when event’s eventPhase attribute value is CAPTURING_PHASE. Either way, callback will be invoked if event’s eventPhase attribute value is AT_TARGET.

When set to true, options’s passive indicates that the callback will not cancel the event by invoking preventDefault(). This is used to enable performance optimizations described in § 2.8 Observing event listeners.

When set to true, options’s once indicates that the callback will only be invoked once after which the event listener will be removed.

If an AbortSignal is passed for options’s signal, then the event listener will be removed when signal is aborted.

The event listener is appended to target’s event listener list and is not appended if it has the same type, callback, and capture.

MDN Reference

Parameters

type: string

callback: null | EventListenerOrEventListenerObject

options?: boolean | AddEventListenerOptions

Returns

void

Inherited from

Node.addEventListener

Defined in

node_modules/typescript/lib/lib.dom.d.ts:8337

appendChild()
appendChild<T>(node): T

MDN Reference

Type Parameters

T extends Node

Parameters

node: T

Returns

T

Inherited from

Node.appendChild

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16424

cloneNode()
cloneNode(deep?): Node

Returns a copy of node. If deep is true, the copy also includes the node’s descendants.

MDN Reference

Parameters

deep?: boolean

Returns

Node

Inherited from

Node.cloneNode

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16430

compareDocumentPosition()
compareDocumentPosition(other): number

Returns a bitmask indicating the position of other relative to node.

MDN Reference

Parameters

other: Node

Returns

number

Inherited from

Node.compareDocumentPosition

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16436

contains()
contains(other): boolean

Returns true if other is an inclusive descendant of node, and false otherwise.

MDN Reference

Parameters

other: null | Node

Returns

boolean

Inherited from

Node.contains

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16442

dispatchEvent()
dispatchEvent(event): boolean

Dispatches a synthetic event event to target and returns true if either event’s cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.

MDN Reference

Parameters

event: Event

Returns

boolean

Inherited from

Node.dispatchEvent

Defined in

node_modules/typescript/lib/lib.dom.d.ts:8343

getRootNode()
getRootNode(options?): Node

Returns node’s root.

MDN Reference

Parameters

options?: GetRootNodeOptions

Returns

Node

Inherited from

Node.getRootNode

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16448

hasChildNodes()
hasChildNodes(): boolean

Returns whether node has children.

MDN Reference

Returns

boolean

Inherited from

Node.hasChildNodes

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16454

insertBefore()
insertBefore<T>(node, child): T

MDN Reference

Type Parameters

T extends Node

Parameters

node: T

child: null | Node

Returns

T

Inherited from

Node.insertBefore

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16456

isDefaultNamespace()
isDefaultNamespace(namespace): boolean

MDN Reference

Parameters

namespace: null | string

Returns

boolean

Inherited from

Node.isDefaultNamespace

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16458

isEqualNode()
isEqualNode(otherNode): boolean

Returns whether node and otherNode have the same properties.

MDN Reference

Parameters

otherNode: null | Node

Returns

boolean

Inherited from

Node.isEqualNode

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16464

isSameNode()
isSameNode(otherNode): boolean

MDN Reference

Parameters

otherNode: null | Node

Returns

boolean

Inherited from

Node.isSameNode

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16466

lookupNamespaceURI()
lookupNamespaceURI(prefix): null | string

MDN Reference

Parameters

prefix: null | string

Returns

null | string

Inherited from

Node.lookupNamespaceURI

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16468

lookupPrefix()
lookupPrefix(namespace): null | string

MDN Reference

Parameters

namespace: null | string

Returns

null | string

Inherited from

Node.lookupPrefix

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16470

normalize()
normalize(): void

Removes empty exclusive Text nodes and concatenates the data of remaining contiguous exclusive Text nodes into the first of their nodes.

MDN Reference

Returns

void

Inherited from

Node.normalize

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16476

removeChild()
removeChild<T>(child): T

MDN Reference

Type Parameters

T extends Node

Parameters

child: T

Returns

T

Inherited from

Node.removeChild

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16478

removeEventListener()
removeEventListener(
type,
callback,
options?): void

Removes the event listener in target’s event listener list with the same type, callback, and options.

MDN Reference

Parameters

type: string

callback: null | EventListenerOrEventListenerObject

options?: boolean | EventListenerOptions

Returns

void

Inherited from

Node.removeEventListener

Defined in

node_modules/typescript/lib/lib.dom.d.ts:8349

replaceChild()
replaceChild<T>(node, child): T

MDN Reference

Type Parameters

T extends Node

Parameters

node: Node

child: T

Returns

T

Inherited from

Node.replaceChild

Defined in

node_modules/typescript/lib/lib.dom.d.ts:16480