Групповые селекторы (“selector1, selector2, selectorN”)


Содержание:

multiple selector

Описание: Selects the combined results of all the specified selectors.

  • Добавлен в версии: 1.0jQuery( "selector1, selector2, selectorN" )

    selector1: Any valid selector.

    selector2: Another valid selector.

    selectorN: As many more valid selectors as you like.

You can specify any number of selectors to combine into a single result. This multiple expression combinator is an efficient way to select disparate elements. The order of the DOM elements in the returned jQuery object may not be identical, as they will be in document order. An alternative to this combinator is the .add() method.