From 48d71d0c3e53d1bb1688fc6c0593b008ced3403b Mon Sep 17 00:00:00 2001 From: ruado1987 Date: Sun, 3 Mar 2013 23:51:04 +0800 Subject: [PATCH] Fix #13514: Set selectedIndex to -1 when non-matching value is set on a select. Close gh-1191. --- src/attributes.js | 21 ++++++++++++++------- test/unit/attributes.js | 16 ++++++++++++++++ 2 files changed, 30 insertions(+), 7 deletions(-) diff --git a/src/attributes.js b/src/attributes.js index 6902244ed..9a5276966 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -275,13 +275,20 @@ jQuery.extend({ }, set: function( elem, value ) { - var values = jQuery.makeArray( value ); - - jQuery(elem).find("option").each(function() { - this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; - }); - - if ( !values.length ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + if ( (option.selected = jQuery.inArray( jQuery(option).val(), values ) >= 0) ) { + optionSet = true; + } + } + + // force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { elem.selectedIndex = -1; } return values; diff --git a/test/unit/attributes.js b/test/unit/attributes.js index ccd1f4a99..f0ca137e6 100644 --- a/test/unit/attributes.js +++ b/test/unit/attributes.js @@ -850,6 +850,22 @@ test( "val()", function() { equal( jQuery("