mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
jQuery objects have a default length of 0. Simplifies $() some.
This commit is contained in:
parent
a38a5cd531
commit
88bd74c732
25
src/core.js
25
src/core.js
@ -39,15 +39,12 @@ jQuery.fn = jQuery.prototype = {
|
|||||||
var match, elem, ret;
|
var match, elem, ret;
|
||||||
|
|
||||||
// Handle $(""), $(null), or $(undefined)
|
// Handle $(""), $(null), or $(undefined)
|
||||||
if ( !selector ) {
|
if ( !selector ) return this;
|
||||||
this.length = 0;
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Handle $(DOMElement)
|
// Handle $(DOMElement)
|
||||||
if ( selector.nodeType ) {
|
if ( selector.nodeType ) {
|
||||||
this[0] = selector;
|
this[0] = selector;
|
||||||
this.length = 1;
|
this.length++;
|
||||||
this.context = selector;
|
this.context = selector;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
@ -68,17 +65,16 @@ jQuery.fn = jQuery.prototype = {
|
|||||||
} else {
|
} else {
|
||||||
elem = document.getElementById( match[3] );
|
elem = document.getElementById( match[3] );
|
||||||
|
|
||||||
// Handle the case where IE and Opera return items
|
|
||||||
// by name instead of ID
|
|
||||||
if ( elem && elem.id !== match[3] ) {
|
|
||||||
return rootjQuery.find( selector );
|
|
||||||
}
|
|
||||||
|
|
||||||
// Otherwise, we inject the element directly into the jQuery object
|
|
||||||
this.length = elem ? 1 : 0;
|
|
||||||
if ( elem ) {
|
if ( elem ) {
|
||||||
|
// Handle the case where IE and Opera return items
|
||||||
|
// by name instead of ID
|
||||||
|
if ( elem.id !== match[3] ) return rootjQuery.find( selector );
|
||||||
|
|
||||||
|
// Otherwise, we inject the element directly into the jQuery object
|
||||||
|
this.length++;
|
||||||
this[0] = elem;
|
this[0] = elem;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.context = document;
|
this.context = document;
|
||||||
this.selector = selector;
|
this.selector = selector;
|
||||||
return this;
|
return this;
|
||||||
@ -117,6 +113,9 @@ jQuery.fn = jQuery.prototype = {
|
|||||||
// The current version of jQuery being used
|
// The current version of jQuery being used
|
||||||
jquery: "@VERSION",
|
jquery: "@VERSION",
|
||||||
|
|
||||||
|
// The default length of a jQuery object is 0
|
||||||
|
length: 0,
|
||||||
|
|
||||||
// The number of elements contained in the matched element set
|
// The number of elements contained in the matched element set
|
||||||
size: function() {
|
size: function() {
|
||||||
return this.length;
|
return this.length;
|
||||||
|
Loading…
Reference in New Issue
Block a user