Partially revert commit a64dc04050
.
Removing the conditional was too liberal as now attr() would even work on plain javascript objects. Keeping a check to make sure it is at least a DOM Node is appropriate. Using nodeName as in the commit which introduced the nodeType === 1 check seems plausible.
This commit is contained in:
parent
a64dc04050
commit
49f088f2db
|
@ -206,7 +206,6 @@ jQuery.fn.extend({
|
||||||
return elem.getAttribute("value") === null ? "on" : elem.value;
|
return elem.getAttribute("value") === null ? "on" : elem.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Everything else, we just grab the value
|
// Everything else, we just grab the value
|
||||||
return (elem.value || "").replace(rreturn, "");
|
return (elem.value || "").replace(rreturn, "");
|
||||||
|
|
||||||
|
@ -289,88 +288,91 @@ jQuery.extend({
|
||||||
// Try to normalize/fix the name
|
// Try to normalize/fix the name
|
||||||
name = notxml && jQuery.props[ name ] || name;
|
name = notxml && jQuery.props[ name ] || name;
|
||||||
|
|
||||||
// These attributes require special treatment
|
// Only do all the following if this is a node (faster for style)
|
||||||
var special = rspecialurl.test( name );
|
if ( elem.nodeName ) {
|
||||||
|
// These attributes require special treatment
|
||||||
|
var special = rspecialurl.test( name );
|
||||||
|
|
||||||
// Safari mis-reports the default selected property of an option
|
// Safari mis-reports the default selected property of an option
|
||||||
// Accessing the parent's selectedIndex property fixes it
|
// Accessing the parent's selectedIndex property fixes it
|
||||||
if ( name === "selected" && !jQuery.support.optSelected ) {
|
if ( name === "selected" && !jQuery.support.optSelected ) {
|
||||||
var parent = elem.parentNode;
|
var parent = elem.parentNode;
|
||||||
if ( parent ) {
|
if ( parent ) {
|
||||||
parent.selectedIndex;
|
parent.selectedIndex;
|
||||||
|
|
||||||
// Make sure that it also works with optgroups, see #5701
|
// Make sure that it also works with optgroups, see #5701
|
||||||
if ( parent.parentNode ) {
|
if ( parent.parentNode ) {
|
||||||
parent.parentNode.selectedIndex;
|
parent.parentNode.selectedIndex;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// If applicable, access the attribute via the DOM 0 way
|
// If applicable, access the attribute via the DOM 0 way
|
||||||
// 'in' checks fail in Blackberry 4.7 #6931
|
// 'in' checks fail in Blackberry 4.7 #6931
|
||||||
if ( (name in elem || elem[ name ] !== undefined) && notxml && !special ) {
|
if ( (name in elem || elem[ name ] !== undefined) && notxml && !special ) {
|
||||||
if ( set ) {
|
if ( set ) {
|
||||||
// We can't allow the type property to be changed (since it causes problems in IE)
|
// We can't allow the type property to be changed (since it causes problems in IE)
|
||||||
if ( name === "type" && rtype.test( elem.nodeName ) && elem.parentNode ) {
|
if ( name === "type" && rtype.test( elem.nodeName ) && elem.parentNode ) {
|
||||||
jQuery.error( "type property can't be changed" );
|
jQuery.error( "type property can't be changed" );
|
||||||
}
|
|
||||||
|
|
||||||
if ( value === null ) {
|
|
||||||
if ( elem.nodeType === 1 ) {
|
|
||||||
elem.removeAttribute( name );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
if ( value === null ) {
|
||||||
elem[ name ] = value;
|
if ( elem.nodeType === 1 ) {
|
||||||
|
elem.removeAttribute( name );
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
elem[ name ] = value;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// browsers index elements by id/name on forms, give priority to attributes.
|
||||||
|
if ( jQuery.nodeName( elem, "form" ) && elem.getAttributeNode(name) ) {
|
||||||
|
return elem.getAttributeNode( name ).nodeValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
|
||||||
|
// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
|
||||||
|
if ( name === "tabIndex" ) {
|
||||||
|
var attributeNode = elem.getAttributeNode( "tabIndex" );
|
||||||
|
|
||||||
|
return attributeNode && attributeNode.specified ?
|
||||||
|
attributeNode.value :
|
||||||
|
rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?
|
||||||
|
0 :
|
||||||
|
undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
return elem[ name ];
|
||||||
}
|
}
|
||||||
|
|
||||||
// browsers index elements by id/name on forms, give priority to attributes.
|
if ( !jQuery.support.style && notxml && name === "style" ) {
|
||||||
if ( jQuery.nodeName( elem, "form" ) && elem.getAttributeNode(name) ) {
|
if ( set ) {
|
||||||
return elem.getAttributeNode( name ).nodeValue;
|
elem.style.cssText = "" + value;
|
||||||
|
}
|
||||||
|
|
||||||
|
return elem.style.cssText;
|
||||||
}
|
}
|
||||||
|
|
||||||
// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
|
|
||||||
// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
|
|
||||||
if ( name === "tabIndex" ) {
|
|
||||||
var attributeNode = elem.getAttributeNode( "tabIndex" );
|
|
||||||
|
|
||||||
return attributeNode && attributeNode.specified ?
|
|
||||||
attributeNode.value :
|
|
||||||
rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?
|
|
||||||
0 :
|
|
||||||
undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
return elem[ name ];
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( !jQuery.support.style && notxml && name === "style" ) {
|
|
||||||
if ( set ) {
|
if ( set ) {
|
||||||
elem.style.cssText = "" + value;
|
// convert the value to a string (all browsers do this but IE) see #1070
|
||||||
|
elem.setAttribute( name, "" + value );
|
||||||
}
|
}
|
||||||
|
|
||||||
return elem.style.cssText;
|
// Ensure that missing attributes return undefined
|
||||||
|
// Blackberry 4.7 returns "" from getAttribute #6938
|
||||||
|
if ( !elem.attributes[ name ] && (elem.hasAttribute && !elem.hasAttribute( name )) ) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
var attr = !jQuery.support.hrefNormalized && notxml && special ?
|
||||||
|
// Some attributes require a special call on IE
|
||||||
|
elem.getAttribute( name, 2 ) :
|
||||||
|
elem.getAttribute( name );
|
||||||
|
|
||||||
|
// Non-existent attributes return null, we normalize to undefined
|
||||||
|
return attr === null ? undefined : attr;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( set ) {
|
|
||||||
// convert the value to a string (all browsers do this but IE) see #1070
|
|
||||||
elem.setAttribute( name, "" + value );
|
|
||||||
}
|
|
||||||
|
|
||||||
// Ensure that missing attributes return undefined
|
|
||||||
// Blackberry 4.7 returns "" from getAttribute #6938
|
|
||||||
if ( !elem.attributes[ name ] && (elem.hasAttribute && !elem.hasAttribute( name )) ) {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
var attr = !jQuery.support.hrefNormalized && notxml && special ?
|
|
||||||
// Some attributes require a special call on IE
|
|
||||||
elem.getAttribute( name, 2 ) :
|
|
||||||
elem.getAttribute( name );
|
|
||||||
|
|
||||||
// Non-existent attributes return null, we normalize to undefined
|
|
||||||
return attr === null ? undefined : attr;
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue