mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Fixed not(jQuery) (need. more. tests.)
This commit is contained in:
parent
2550b1ea6a
commit
c96b991493
5
src/jquery/coreTest.js
vendored
5
src/jquery/coreTest.js
vendored
@ -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
14
src/jquery/jquery.js
vendored
@ -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;
|
||||
})
|
||||
);
|
||||
},
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user