diff options
author | David Petersen <public@petersendidit.com> | 2009-12-08 07:43:36 +0800 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2009-12-09 14:43:55 +0800 |
commit | 841f9ff7a1815b521044aeeb39ccbe70fa688201 (patch) | |
tree | b4102f2867510421c08b93553a9b12a418a360a8 | |
parent | d3dc2d1234af10cb856519a01a97358eb4103008 (diff) | |
download | jquery-841f9ff7a1815b521044aeeb39ccbe70fa688201.tar.gz jquery-841f9ff7a1815b521044aeeb39ccbe70fa688201.zip |
Handle changing form attributes correctly when there is a child element with the same name. Fixes #4299
-rw-r--r-- | src/attributes.js | 8 | ||||
-rw-r--r-- | test/unit/attributes.js | 3 |
2 files changed, 9 insertions, 2 deletions
diff --git a/src/attributes.js b/src/attributes.js index b5a29e159..4405b431e 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -218,7 +218,13 @@ jQuery.extend({ if ( name == "type" && /(button|input)/i.test(elem.nodeName) && elem.parentNode ) { throw "type property can't be changed"; } - elem[ name ] = value; + // browsers index elements by id/name on forms, give priority to attributes. + if( jQuery.nodeName( elem, "form" ) ) { + // convert the value to a string (all browsers do this but IE) see #1070 + elem.setAttribute( name, "" + value ); + } else { + elem[ name ] = value; + } } // browsers index elements by id/name on forms, give priority to attributes. diff --git a/test/unit/attributes.js b/test/unit/attributes.js index aa5bd7c49..e0425c46c 100644 --- a/test/unit/attributes.js +++ b/test/unit/attributes.js @@ -1,7 +1,7 @@ module("attributes"); test("attr(String)", function() { - expect(27); + expect(28); // This one sometimes fails randomally ?! equals( jQuery('#text1').attr('value'), "Test", 'Check for value attribute' ); @@ -18,6 +18,7 @@ test("attr(String)", function() { equals( jQuery('#name').attr('name'), "name", 'Check for name attribute' ); equals( jQuery('#text1').attr('name'), "action", 'Check for name attribute' ); ok( jQuery('#form').attr('action').indexOf("formaction") >= 0, 'Check for action attribute' ); + ok( jQuery('#form').attr('action','newformaction').attr('action').indexOf("newformaction") >= 0, 'Check that action attribute was changed' ); equals( jQuery('#text1').attr('maxlength'), '30', 'Check for maxlength attribute' ); equals( jQuery('#text1').attr('maxLength'), '30', 'Check for maxLength attribute' ); equals( jQuery('#area1').attr('maxLength'), '30', 'Check for maxLength attribute' ); |