Interface XPathResult
ANY_TYPE: 0;
ANY_UNORDERED_NODE_TYPE: 8;
BOOLEAN_TYPE: 3;
booleanValue: boolean;
FIRST_ORDERED_NODE_TYPE: 9;
invalidIteratorState: boolean;
NUMBER_TYPE: 1;
numberValue: number;
ORDERED_NODE_ITERATOR_TYPE: 5;
ORDERED_NODE_SNAPSHOT_TYPE: 7;
resultType: number;
singleNodeValue: Node | null;
snapshotLength: number;
STRING_TYPE: 2;
stringValue: string;
UNORDERED_NODE_ITERATOR_TYPE: 4;
UNORDERED_NODE_SNAPSHOT_TYPE: 6;
iterateNext(): Node | null;
snapshotItem(index: number): Node | null;
}
Index
Properties
Methods
Properties
ReadonlyANY_TYPE
ReadonlyANY_UNORDERED_NODE_TYPE
ReadonlyBOOLEAN_TYPE
ReadonlybooleanValue
The read-only booleanValue property of the The return value is the boolean value of the XPathResult returned by In case XPathResult.resultType is not BOOLEAN_TYPE, a The following example shows the use of the booleanValue property.
ReadonlyFIRST_ORDERED_NODE_TYPE
ReadonlyinvalidIteratorState
The read-only invalidIteratorState property of the is true if XPathResult.resultType is UNORDERED_NODE_ITERATOR_TYPE or ORDERED_NODE_ITERATOR_TYPE and the document has been modified since this result was returned.
ReadonlyNUMBER_TYPE
ReadonlynumberValue
The read-only numberValue property of the The return value is the numeric value of the XPathResult returned by In case XPathResult.resultType is not NUMBER_TYPE, a The following example shows the use of the numberValue property.
ReadonlyORDERED_NODE_ITERATOR_TYPE
ReadonlyORDERED_NODE_SNAPSHOT_TYPE
ReadonlyresultType
The read-only resultType property of the the type constants.
ReadonlysingleNodeValue
The read-only singleNodeValue property of the null in case no node was matched of a result with FIRST_ORDERED_NODE_TYPE.
ReadonlysnapshotLength
The read-only snapshotLength property of the snapshot.
ReadonlySTRING_TYPE
ReadonlystringValue
The read-only stringValue property of the The return value is the string value of the XPathResult returned by In case XPathResult.resultType is not STRING_TYPE, a The following example shows the use of the stringValue property.
The
XPathResultinterface represents the results generated by evaluating an XPath expression within the context of a given node.MDN Reference