Fixed not(jQuery) (need. more. tests.)

This commit is contained in:
Jörn Zaefferer 2007-01-23 10:32:41 +00:00
parent 2550b1ea6a
commit c96b991493
2 changed files with 10 additions and 9 deletions

View File

@ -494,10 +494,11 @@ test("filter()", function() {
isSet( $("p").filter(function() { return !$("a", this).length }).get(), q("sndp", "first"), "filter(Function)" );
});
test("not(String)", function() {
expect(2);
test("not()", function() {
expect(3);
ok( $("#main > p#ap > a").not("#google").length == 2, "not('selector')" );
isSet( $("p").not("#ap, #sndp, .result").get(), q("firstp", "en", "sap", "first"), "not('selector, selector')" );
isSet( $("p").not($("#ap, #sndp, .result")).get(), q("firstp", "en", "sap", "first"), "not(jQuery)" );
});

14
src/jquery/jquery.js vendored
View File

@ -927,14 +927,14 @@ jQuery.fn = jQuery.prototype = {
not: function(t) {
return this.pushStack(
t.constructor == String &&
jQuery.multiFilter(t,this,true) ||
jQuery.multiFilter(t, this, true) ||
jQuery.grep(this,function(a){
if ( t.constructor == Array || t.jquery )
return jQuery.inArray( t, a ) < 0;
else
return a != t;
}) );
jQuery.grep(this, function(a) {
return ( t.constructor == Array || t.jquery )
? console.log("t: %o a: %o", t, a) | jQuery.inArray( a, t ) < 0
: a != t;
})
);
},
/**