Is the order objects are return by a jQuery selector specified?

前端 未结 4 570
醉话见心
醉话见心 2020-11-30 05:37

All jQuery selectors return an array of objects. Are these objects always in the same order as they are in the HTML? Can I rely on this?

4条回答
  •  天命终不由人
    2020-11-30 06:00

    Yes.
    The jQuery 1.3.2 release notes say:

    Elements Returned in Document Order

    This is a change to jQuery's selector engine that re-orders the returned results to be in document order, instead of the order in which the selectors were passed in. This change was done in order to be in compliance with the Selectors API specification (which jQuery uses, internally, in browsers that support it).

    This wasn't the case on jQuery 1.3:

    The order of "a, b, c" style selectors may change. Browsers that support querySelectorAll (Safari, Firefox 3.5+, Opera 10+, IE 8+) will return the elements in document order, other browsers will (currently) return them in the order specified. In 1.3.2 and later release all comma-separated selectors will be returned in document order.

提交回复
热议问题