Fixed #2070 by adding a test for !nodeType to isArrayLike so DOM elements like SELECT are not considered array-like (even though they really are).

This commit is contained in:
David Serduke 2007-12-17 21:02:05 +00:00
parent d1b9ad3cdb
commit 24e036c7c8
2 changed files with 3 additions and 5 deletions

View file

@ -352,11 +352,9 @@ jQuery.fn = jQuery.prototype = {
else
selector = jQuery.multiFilter( selector, this );
var isArrayLike = selector.length && selector[selector.length - 1] !== undefined && !selector.nodeType;
return this.filter(function() {
// check to see if the selector is array-like otherwise assume it is just a DOM element
return ( selector.length && selector[selector.length - 1] !== undefined )
? jQuery.inArray( this, selector ) < 0
: this != selector;
return isArrayLike ? jQuery.inArray( this, selector ) < 0 : this != selector;
});
},

View file

@ -1068,7 +1068,7 @@ test("not()", function() {
isSet( $("#form option").not("option.emptyopt:contains('Nothing'),[selected],[value='1']").get(), q("option1c", "option1d", "option2c", "option3d" ), "not('complex selector')");
var selects = $("#form select");
isSet( selects.not( selects[1] ), ["select1", "select3"], "filter out DOM element");
isSet( selects.not( selects[1] ), q("select1", "select3"), "filter out DOM element");
});
test("andSelf()", function() {