Frage

I have an object Elements xxx. Now I want to iterate over it and I would like to check if any element is img tag. How can I do that ?

War es hilfreich?

Lösung

You can use the tagName:

Elements yourElements = ...

for( Element element : yourElements )
{
    if( element.tagName().equals("img") == true)
    {
        // It's an 'img'
    }
    else
    {
        // It's not an 'img'
    }
}
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top