.hasClass()


.hasClass( className )Возвращает: Boolean

Описание: Проверяет наличие класса у элементов страницы.

Elements may have more than one class assigned to them. In HTML, this is represented by separating the class names with a space:

1
<div id="mydiv" class="foo bar"></div>

The .hasClass() method will return true if the class is assigned to an element, even if other classes also are. For example, given the HTML above, the following will return true:

1
$( "#mydiv" ).hasClass( "foo" )

As would:

1
$( "#mydiv" ).hasClass( "bar" )

While this would return false:

1
$( "#mydiv" ).hasClass( "quux" )

As of jQuery 1.12/2.2, this method supports XML documents, including SVG.

Примеры использования