mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
jquery core: small size optimizations for val().
This commit is contained in:
parent
db63af1068
commit
fc38ead4dc
13
src/core.js
13
src/core.js
@ -357,11 +357,10 @@ jQuery.fn = jQuery.prototype = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
val: function( value ) {
|
val: function( value ) {
|
||||||
if ( value == undefined ) {
|
if ( value == undefined ) {
|
||||||
|
var elem = this[0];
|
||||||
if ( this.length ) {
|
|
||||||
var elem = this[0];
|
|
||||||
|
|
||||||
|
if ( elem ) {
|
||||||
if( jQuery.nodeName( elem, 'option' ) )
|
if( jQuery.nodeName( elem, 'option' ) )
|
||||||
return (elem.attributes.value || {}).specified ? elem.value : elem.text;
|
return (elem.attributes.value || {}).specified ? elem.value : elem.text;
|
||||||
|
|
||||||
@ -393,11 +392,11 @@ jQuery.fn = jQuery.prototype = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return values;
|
return values;
|
||||||
|
}
|
||||||
|
|
||||||
// Everything else, we just grab the value
|
// Everything else, we just grab the value
|
||||||
} else
|
return (elem.value || "").replace(/\r/g, "");
|
||||||
return (this[0].value || "").replace(/\r/g, "");
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user