mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Make sure that forms and selects are added to a jQuery set correctly. Fixes #6912.
This commit is contained in:
parent
a9b81d759a
commit
728a70c036
@ -160,7 +160,7 @@ jQuery.fn.extend({
|
|||||||
add: function( selector, context ) {
|
add: function( selector, context ) {
|
||||||
var set = typeof selector === "string" ?
|
var set = typeof selector === "string" ?
|
||||||
jQuery( selector, context ) :
|
jQuery( selector, context ) :
|
||||||
jQuery.makeArray( selector ),
|
jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ),
|
||||||
all = jQuery.merge( this.get(), set );
|
all = jQuery.merge( this.get(), set );
|
||||||
|
|
||||||
return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ?
|
return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ?
|
||||||
|
@ -480,7 +480,7 @@ test("contents()", function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
test("add(String|Element|Array|undefined)", function() {
|
test("add(String|Element|Array|undefined)", function() {
|
||||||
expect(16);
|
expect(17);
|
||||||
same( jQuery("#sndp").add("#en").add("#sap").get(), q("sndp", "en", "sap"), "Check elements from document" );
|
same( jQuery("#sndp").add("#en").add("#sap").get(), q("sndp", "en", "sap"), "Check elements from document" );
|
||||||
same( jQuery("#sndp").add( jQuery("#en")[0] ).add( jQuery("#sap") ).get(), q("sndp", "en", "sap"), "Check elements from document" );
|
same( jQuery("#sndp").add( jQuery("#en")[0] ).add( jQuery("#sap") ).get(), q("sndp", "en", "sap"), "Check elements from document" );
|
||||||
ok( jQuery([]).add(jQuery("#form")[0].elements).length >= 13, "Check elements from array" );
|
ok( jQuery([]).add(jQuery("#form")[0].elements).length >= 13, "Check elements from array" );
|
||||||
@ -519,7 +519,8 @@ test("add(String|Element|Array|undefined)", function() {
|
|||||||
var notDefined;
|
var notDefined;
|
||||||
equals( jQuery([]).add(notDefined).length, 0, "Check that undefined adds nothing" );
|
equals( jQuery([]).add(notDefined).length, 0, "Check that undefined adds nothing" );
|
||||||
|
|
||||||
ok( jQuery([]).add( document.getElementById("form") ).length >= 13, "Add a form (adds the elements)" );
|
equals( jQuery([]).add( document.getElementById("form") ).length, 1, "Add a form" );
|
||||||
|
equals( jQuery([]).add( document.getElementById("select1") ).length, 1, "Add a select" );
|
||||||
});
|
});
|
||||||
|
|
||||||
test("add(String, Context)", function() {
|
test("add(String, Context)", function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user