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 ?

有帮助吗?

解决方案

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'
    }
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top