public interface NodeSelector
Modifier and Type | Method and Description |
---|---|
<T extends Element> |
querySelector(java.lang.String selector)
The method must return the first matching ReactElement node within the subtrees of the context node.
|
NodeList |
querySelectorAll(java.lang.String selector)
The method return a NodeList containing all of the matching ReactElement nodes within the subtrees of the
context node, in document order.
|
<T extends Element> T querySelector(java.lang.String selector)
selector
- The selector used to search for the matching ReactElementNodeList querySelectorAll(java.lang.String selector)
selector
- The selector used to search for the matching Elements