Document.GetElementsByClassName
Document.GetElementsByClassName method
The getElementsByClassName method of Document
interface returns an array-like object of all child elements which have all of the given class name(s).
When called on the document object, the complete document is searched, including the root node. You may also call getElementsByClassName() on any element; it will return only elements which are descendants of the specified root element with the given class name(s).
public HTMLCollection GetElementsByClassName(String classNames)
Parameter | Type | Description |
---|---|---|
classNames | String | The String String that contains an unordered set of unique space-separated tokens representing classes (class names) |
Return Value
A live HTMLCollection
of found elements.
Remarks
Refer to official spec.
Practice web development content can be founded in w3schools.
You can download the complete examples and data files from GitHub.
Examples
var elements = document.GetElementsByClassName("red test");
// HTML content
<div class="custom-class">Customized by css class container</div>
// C# code
import System;
import com.aspose.html;
import com.aspose.html.Collections;
import com.aspose.html.Dom;
...
import (var document = new HTMLDocument(inputHtmlPath))
{
HTMLCollection htmlCollection = document.GetElementsByClassName("custom-class");
Console.WriteLine($"Found: {htmlCollection.Length}" );
foreach (Element element in htmlCollection)
{
Console.WriteLine(element.InnerHTML);
}
// User code goes here
}
// Console output
Found: 1
Customized by css class container
*inputHtmlPath - user input html file path
// CSS styling
.ddd{
padding: 10pt;
}
.kkk{
background-color: chartreuse;
}
// HTML content
<div id="smart class">
<p id="p1" class="ddd kkk">Paragraph styled by class name =ddd kkk=</p>
<p id="p2" class="ddd fff">Paragraph styled by class name =ddd fff=</p>
<p id="p3" class="kkk fff">Paragraph styled by class name =kkk fff=</p>
</div>
# C# code
import System;
import com.aspose.html;
import com.aspose.html.Collections;
import com.aspose.html.Dom;
...
import (var document = new HTMLDocument(inputHtmlPath))
{
HTMLCollection htmlCollection = document.GetElementsByClassName("ddd");
Console.WriteLine($"Found: {htmlCollection.Length}" );
foreach (Element element in htmlCollection)
{
Console.WriteLine(element.InnerHTML);
Console.WriteLine($"Element type: {element.GetType()}");
}
// User code goes here
}
Console output
Found: 2
Paragraph styled by class name =ddd kkk=
Element type: com.aspose.html.HTMLParagraphElement
Paragraph styled by class name =ddd fff=
Element type: com.aspose.html.HTMLParagraphElement
*inputHtmlPath - user input html file path
// CSS styling
.pStyle{
font-weight: bold;
}
# HTML content
<div>
<p class="pStyle">First styled by pStyle class paragraph</p>
<p class="pStyle">Second styled by pStyle class paragraph</p>
<p class="pStyle">Third styled by pStyle class paragraph</p>
<span class="pStyle">Span styled by pStyle</span>
</div>
# C# code
import System;
import com.aspose.html;
import com.aspose.html.Collections;
import com.aspose.html.Dom;
...
import (var document = new HTMLDocument(inputHtmlPath))
{
HTMLCollection htmlCollection = document.GetElementsByClassName("pStyle");
Console.WriteLine($"Found: {htmlCollection.Length}" );
foreach (Element element in htmlCollection)
{
Console.WriteLine(element.InnerHTML);
Console.WriteLine($"Element type: {element.GetType()}");
}
// User code goes here
}
Console output
Found: 4
First styled by pStyle class paragraph
Element type: com.aspose.html.HTMLParagraphElement
Second styled by pStyle class paragraph
Element type: com.aspose.html.HTMLParagraphElement
Third styled by pStyle class paragraph
Element type: com.aspose.html.HTMLParagraphElement
Span styled by pStyle
Element type: com.aspose.html.HTMLElement
*inputHtmlPath - user input html file path
See Also
- class HTMLCollection
- class Document
- package com.aspose.html.Dom
- package Aspose.HTML