X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fmanipulation.js;h=f577cf83772928522e2c42e70ccff2114d788207;hb=f57d93bf18a2d5c3b7a0b50da67cf6147aa389c3;hp=55017c196ff82a15ec3cd6c6a9143c0427c80b24;hpb=7a04d1da54caec00b900620390df820fb85b1227;p=jquery.git diff --git a/src/manipulation.js b/src/manipulation.js index 55017c1..f577cf8 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -1,16 +1,30 @@ +var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g, + rleadingWhitespace = /^\s+/, + rsingleTag = /^<(\w+)\s*\/?>$/, + rxhtmlTag = /(<(\w+)[^>]*?)\/>/g, + rselfClosing = /^(?:abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i, + rinsideTable = /^<(thead|tbody|tfoot|colg|cap)/, + rtbody = /"; + }); + jQuery.fn.extend({ text: function( text ) { - if ( typeof text !== "object" && text != null ) + if ( typeof text !== "object" && text !== undefined ) return this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) ); var ret = ""; jQuery.each( text || this, function(){ jQuery.each( this.childNodes, function(){ - if ( this.nodeType != 8 ) - ret += this.nodeType != 1 ? + if ( this.nodeType !== 8 ) { + ret += this.nodeType !== 1 ? this.nodeValue : jQuery.fn.text( [ this ] ); + } }); }); @@ -18,22 +32,26 @@ jQuery.fn.extend({ }, wrapAll: function( html ) { - if(jQuery.isFunction(html)) { - return this.each(function() { jQuery(this).wrapAll(html.call(this)); }); + if ( jQuery.isFunction( html ) ) { + return this.each(function() { + jQuery(this).wrapAll( html.apply(this, arguments) ); + }); } if ( this[0] ) { // The elements to wrap the target around var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(); - if ( this[0].parentNode ) + if ( this[0].parentNode ) { wrap.insertBefore( this[0] ); + } wrap.map(function(){ var elem = this; - while ( elem.firstChild && elem.firstChild.nodeType === 1 ) + while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { elem = elem.firstChild; + } return elem; }).append(this); @@ -56,15 +74,17 @@ jQuery.fn.extend({ append: function() { return this.domManip(arguments, true, function(elem){ - if (this.nodeType == 1) + if ( this.nodeType === 1 ) { this.appendChild( elem ); + } }); }, prepend: function() { return this.domManip(arguments, true, function(elem){ - if (this.nodeType == 1) + if ( this.nodeType === 1 ) { this.insertBefore( elem, this.firstChild ); + } }); }, @@ -99,9 +119,11 @@ jQuery.fn.extend({ html = div.innerHTML; } - return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g, "").replace(/^\s*/, "")], ownerDocument)[0]; - } else + return jQuery.clean([html.replace(rinlinejQuery, "") + .replace(rleadingWhitespace, "")], ownerDocument)[0]; + } else { return this.cloneNode(true); + } }); // Copy the events from the original to the clone @@ -109,8 +131,7 @@ jQuery.fn.extend({ var orig = this.find("*").andSelf(), i = 0; ret.find("*").andSelf().each(function(){ - if ( this.nodeName !== orig[i].nodeName ) - return; + if ( this.nodeName !== orig[i].nodeName ) { return; } var events = jQuery.data( orig[i], "events" ); @@ -131,7 +152,7 @@ jQuery.fn.extend({ html: function( value ) { return value === undefined ? (this[0] ? - this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g, "") : + this[0].innerHTML.replace(rinlinejQuery, "") : null) : this.empty().append( value ); }, @@ -141,15 +162,15 @@ jQuery.fn.extend({ }, domManip: function( args, table, callback ) { - var fragment, scripts, cacheable, cached, cacheresults, first; - var value = args[0]; + var fragment, scripts, cacheable, cached, cacheresults, first, + value = args[0]; if ( jQuery.isFunction(value) ) { return this.each(function() { args[0] = value.call(this); return jQuery(this).domManip( args, table, callback ); }); - }; + } if ( this[0] ) { if ( args.length === 1 && typeof args[0] === "string" && args[0].length < 512 && args[0].indexOf("$/.exec(elems[0]); - if ( match ) + var match = rsingleTag.exec(elems[0]); + if ( match ) { return [ context.createElement( match[1] ) ]; + } } var ret = [], scripts = [], div = context.createElement("div"); jQuery.each(elems, function(i, elem){ - if ( typeof elem === "number" ) + if ( typeof elem === "number" ) { elem += ''; + } - if ( !elem ) - return; + if ( !elem ) { return; } // Convert html string into DOM nodes if ( typeof elem === "string" ) { // Fix "XHTML"-style tags in all browsers - elem = elem.replace(/(<(\w+)[^>]*?)\/>/g, function(all, front, tag){ - return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i) ? - all : - front + ">"; - }); + elem = elem.replace(rxhtmlTag, fcloseTag); // Trim whitespace, otherwise indexOf won't work as expected - var tags = elem.replace(/^\s+/, "").substring(0, 10).toLowerCase(); + var tags = elem.replace(rleadingWhitespace, "") + .substring(0, 10).toLowerCase(); var wrap = // option or optgroup @@ -302,7 +322,7 @@ jQuery.extend({ !tags.indexOf("", "" ] || - tags.match(/^<(thead|tbody|tfoot|colg|cap)/) && + rinsideTable.test(tags) && [ 1, "", "
" ] || !tags.indexOf(" from table fragments if ( !jQuery.support.tbody ) { // String was a , *may* have spurious - var hasBody = / or - wrap[1] == "
" && !hasBody ? - div.childNodes : - []; + // String was a bare or + wrap[1] == "
" && !hasBody ? + div.childNodes : + []; - for ( var j = tbody.length - 1; j >= 0 ; --j ) - if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length ) + for ( var j = tbody.length - 1; j >= 0 ; --j ) { + if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length ) { tbody[ j ].parentNode.removeChild( tbody[ j ] ); - + } } + } + // IE completely kills leading whitespace when innerHTML is used - if ( !jQuery.support.leadingWhitespace && /^\s/.test( elem ) ) - div.insertBefore( context.createTextNode( elem.match(/^\s*/)[0] ), div.firstChild ); + if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { + div.insertBefore( context.createTextNode( rleadingWhitespace.exec(elem)[0] ), div.firstChild ); + } elem = jQuery.makeArray( div.childNodes ); } - if ( elem.nodeType ) + if ( elem.nodeType ) { ret.push( elem ); - else + } else { ret = jQuery.merge( ret, elem ); + } }); @@ -366,8 +391,9 @@ jQuery.extend({ if ( jQuery.nodeName( ret[i], "script" ) && (!ret[i].type || ret[i].type.toLowerCase() === "text/javascript") ) { scripts.push( ret[i].parentNode ? ret[i].parentNode.removeChild( ret[i] ) : ret[i] ); } else { - if ( ret[i].nodeType === 1 ) + if ( ret[i].nodeType === 1 ) { ret.splice.apply( ret, [i + 1, 0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))) ); + } fragment.appendChild( ret[i] ); } }