Dart API Referencedart:htmlNodeList

NodeList Interface

NodeList objects are collections of nodes returned by getElementsByTagName, getElementsByTagNameNS, Node.childNodes , querySelectorAll, getElementsByClassName, etc.NodeList objects are collections of nodes returned by getElementsByTagName, getElementsByTagNameNS, Node.childNodes , querySelectorAll, getElementsByClassName, etc.

Extends

List<E>

Subinterfaces

RadioNodeList

Methods

Code NodeList filter(bool f(Node element)) #

NodeList filter(bool f(Node element));

Code Node get first() #

Node get first();

Code NodeList getRange(int start, int length) #

NodeList getRange(int start, int length);

Fields

Code final int length #

Reflects the number of elements in the NodeList. 
final int length;

This page includes content from the Mozilla Foundation that is graciously licensed under a Creative Commons: Attribution-Sharealike license. Mozilla has no other association with Dart or dartlang.org. We encourage you to improve the web by contributing to The Mozilla Developer Network.