mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Fixed the issue with .text() returning incorrect results.
This commit is contained in:
parent
a208222f37
commit
f96c860bbd
11
jquery/jquery.js
vendored
11
jquery/jquery.js
vendored
@ -110,11 +110,12 @@ jQuery.fn = jQuery.prototype = {
|
||||
text: function(e) {
|
||||
e = e || this.get();
|
||||
var t = "";
|
||||
for ( var j = 0; j < e.length; j++ )
|
||||
for ( var i = 0; i < e[j].childNodes.length; i++ )
|
||||
t += e[j].childNodes[i].nodeType != 1 ?
|
||||
e[j].childNodes[i].nodeValue :
|
||||
jQuery.fn.text(e[j].childNodes[i].childNodes);
|
||||
for ( var j = 0; j < e.length; j++ ) {
|
||||
var r = e[j].childNodes;
|
||||
for ( var i = 0; i < r.length; i++ )
|
||||
t += r[i].nodeType != 1 ?
|
||||
r[i].nodeValue : jQuery.fn.text([ r[i] ]);
|
||||
}
|
||||
return t;
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user