Query the attributes of the selected node.
A Record<string, boolean>
, describing whether it is necessary to query the corresponding type of property.
The range of queryable property types is as follows, and values outside this range will be ignored:
attribute
(optional)
id
, class
, style
, dataset
will not be returned.null
/ undefined
/ function
will not be returned.class
(optional)
dataset
(optional)
id
(optional)
index
(optional)
query
(optional)
SelectorQuery
object with this node as the root node
SelectorQuery
object is limited to this node and its descendant nodes.selectRoot()
on this SelectorQuery
object will return the NodesRef
object representing this node.tag
(optional)
unique_id
(optional)
A callback function, the query result will be returned as the parameter of the callback function. The callback function has two parameters:
The first parameter returns the query result.
NodesRef
represents one single node, it returns a Record<string, any>
object containing the query result. If the node is not found, it returns null
.NodesRef
represents multiple nodes, it returns an array of Record<string, any>
objects, each element in the array corresponds to the query result of a node. If no nodes are found, it returns an empty array.The second parameter returns the status of the query (error message).
Contains the SelectorQuery
object for this task. Call exec()
to execute the task.
Possible output;