Вход Регистрация
Файл: Main Website Files/assets/bower_components/jquery/src/attributes/val.js
Строк: 156
<?php
define
([
    
"../core",
    
"./support",
    
"../core/init"
], function( jQuerysupport ) {

var 
rreturn = /r/g;

jQuery.fn.extend({
    
val: function( value ) {
        var 
hooksretisFunction,
            
elem this[0];

        if ( !
arguments.length ) {
            if ( 
elem ) {
                
hooks jQuery.valHookselem.type ] || jQuery.valHookselem.nodeName.toLowerCase() ];

                if ( 
hooks && "get" in hooks && (ret hooks.getelem"value" )) !== undefined ) {
                    return 
ret;
                }

                
ret elem.value;

                return 
typeof ret === "string" ?
                    
// Handle most common string cases
                    
ret.replace(rreturn"") :
                    
// Handle cases where value is null/undef or number
                    
ret == null "" ret;
            }

            return;
        }

        
isFunction jQuery.isFunctionvalue );

        return 
this.each(function( ) {
            var 
val;

            if ( 
this.nodeType !== ) {
                return;
            }

            if ( 
isFunction ) {
                
val value.callthisijQuerythis ).val() );
            } else {
                
val value;
            }

            
// Treat null/undefined as ""; convert numbers to string
            
if ( val == null ) {
                
val "";

            } else if ( 
typeof val === "number" ) {
                
val += "";

            } else if ( 
jQuery.isArrayval ) ) {
                
val jQuery.mapval, function( value ) {
                    return 
value == null "" value "";
                });
            }

            
hooks jQuery.valHooksthis.type ] || jQuery.valHooksthis.nodeName.toLowerCase() ];

            
// If set returns undefined, fall back to normal setting
            
if ( !hooks || !("set" in hooks) || hooks.setthisval"value" ) === undefined ) {
                
this.value val;
            }
        });
    }
});

jQuery.extend({
    
valHooks: {
        
option: {
            
get: function( elem ) {
                var 
val jQuery.find.attrelem"value" );
                return 
val != null ?
                    
val :
                    
// Support: IE10-11+
                    // option.text throws exceptions (#14686, #14858)
                    
jQuery.trimjQuery.textelem ) );
            }
        },
        
select: {
            
get: function( elem ) {
                var 
valueoption,
                    
options elem.options,
                    
index elem.selectedIndex,
                    
one elem.type === "select-one" || index 0,
                    
values one null : [],
                    
max one index options.length,
                    
index ?
                        
max :
                        
one index 0;

                
// Loop through all the selected options
                
for ( ; maxi++ ) {
                    
option options];

                    
// IE6-9 doesn't update selected after form reset (#2551)
                    
if ( ( option.selected || === index ) &&
                            
// Don't return options that are disabled or in a disabled optgroup
                            
support.optDisabled ? !option.disabled option.getAttribute"disabled" ) === null ) &&
                            ( !
option.parentNode.disabled || !jQuery.nodeNameoption.parentNode"optgroup" ) ) ) {

                        
// Get the specific value for the option
                        
value jQueryoption ).val();

                        
// We don't need an array for one selects
                        
if ( one ) {
                            return 
value;
                        }

                        
// Multi-Selects return an array
                        
values.pushvalue );
                    }
                }

                return 
values;
            },

            
set: function( elemvalue ) {
                var 
optionSetoption,
                    
options elem.options,
                    
values jQuery.makeArrayvalue ),
                    
options.length;

                while ( 
i-- ) {
                    
option options];
                    if ( (
option.selected jQuery.inArrayoption.valuevalues ) >= 0) ) {
                        
optionSet true;
                    }
                }

                
// Force browsers to behave consistently when non-matching value is set
                
if ( !optionSet ) {
                    
elem.selectedIndex = -1;
                }
                return 
values;
            }
        }
    }
});

// Radios and checkboxes getter/setter
jQuery.each([ "radio""checkbox" ], function() {
    
jQuery.valHooksthis ] = {
        
set: function( elemvalue ) {
            if ( 
jQuery.isArrayvalue ) ) {
                return ( 
elem.checked jQuery.inArrayjQuery(elem).val(), value ) >= );
            }
        }
    };
    if ( !
support.checkOn ) {
        
jQuery.valHooksthis ].get = function( elem ) {
            return 
elem.getAttribute("value") === null "on" elem.value;
        };
    }
});

});
?>
Онлайн: 1
Реклама