ObjectXmlNodeList
The XmlNodeList object represents an ordered list of nodes
inheritance relationship
Operator
operator[]
Data can be accessed directly using subscripts
1readonly XmlNode XmlNodeList[];
member properties
length
Integer, returns the number of nodes in the node list
1readonly Integer XmlNodeList.length;
member function
item
Returns the node at the specified index number in the node list
1XmlNode XmlNodeList.item(Integer index);
Call parameters:
- index: Integer, specify the index to be queried
Return results:
- XmlNode, the node with the specified index number
toString
Returns the string representation of the object. Generally, "[Native Object]" is returned. The object can be re-implemented according to its own characteristics.
1String XmlNodeList.toString();
Return results:
- String, returns the string representation of the object
toJSON
Returns a JSON format representation of the object, generally returning a collection of readable properties defined by the object.
1Value XmlNodeList.toJSON(String key = "");
Call parameters:
- key: String, not used
Return results:
- Value, returns a value containing JSON serializable