mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
handle data- and aria- special
This commit is contained in:
parent
9559b1a294
commit
83e9ce95d7
@ -6,6 +6,7 @@ var rclass = /[\n\t\r]/g,
|
||||
rtype = /^(?:button|input)$/i,
|
||||
rfocusable = /^(?:button|input|object|select|textarea)$/i,
|
||||
rclickable = /^a(?:rea)?$/i,
|
||||
special = /^(?:data-|aria-)/,
|
||||
formHook;
|
||||
|
||||
jQuery.fn.extend({
|
||||
@ -311,7 +312,7 @@ jQuery.extend({
|
||||
|
||||
if ( value !== undefined ) {
|
||||
|
||||
if ( value === null || value === false ) {
|
||||
if ( value === null || (value === false && !special.test( name )) ) {
|
||||
jQuery.removeAttr( elem, name );
|
||||
return undefined;
|
||||
|
||||
@ -319,7 +320,7 @@ jQuery.extend({
|
||||
return ret;
|
||||
|
||||
} else {
|
||||
if( value === true ){
|
||||
if( value === true && !special.test( name ) ){
|
||||
value = name;
|
||||
}
|
||||
elem.setAttribute( name, "" + value );
|
||||
|
Loading…
Reference in New Issue
Block a user