Disabled the passthrough .attr(method_name) functionality. You can now use it if you do: .attr({method_name: value}, true) OR as an easy initialization method: jQuery('<div/>', {html: '...', id: 'test'}).

This commit is contained in:
jeresig 2009-12-18 12:41:53 -05:00
parent 148fb7ba8e
commit d40083c866
4 changed files with 35 additions and 13 deletions

View file

@ -232,13 +232,13 @@ jQuery.extend({
offset: true offset: true
}, },
attr: function( elem, name, value ) { attr: function( elem, name, value, pass ) {
// don't set attributes on text and comment nodes // don't set attributes on text and comment nodes
if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 ) { if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 ) {
return undefined; return undefined;
} }
if ( name in jQuery.attrFn && value !== undefined ) { if ( pass && name in jQuery.attrFn ) {
return jQuery(elem)[name](value); return jQuery(elem)[name](value);
} }

View file

@ -84,7 +84,13 @@ jQuery.fn = jQuery.prototype = {
ret = rsingleTag.exec( selector ); ret = rsingleTag.exec( selector );
if ( ret ) { if ( ret ) {
selector = [ doc.createElement( ret[1] ) ]; if ( jQuery.isPlainObject( context ) ) {
selector = [ document.createElement( ret[1] ) ];
jQuery.fn.attr.call( selector, context, true );
} else {
selector = [ doc.createElement( ret[1] ) ];
}
} else { } else {
ret = buildFragment( [ match[1] ], [ doc ] ); ret = buildFragment( [ match[1] ], [ doc ] );
@ -687,13 +693,13 @@ function evalScript( i, elem ) {
// Mutifunctional method to get and set values to a collection // Mutifunctional method to get and set values to a collection
// The value/s can be optionally by executed if its a function // The value/s can be optionally by executed if its a function
function access( elems, key, value, exec, fn ) { function access( elems, key, value, exec, fn, pass ) {
var length = elems.length; var length = elems.length;
// Setting many attributes // Setting many attributes
if ( typeof key === "object" ) { if ( typeof key === "object" ) {
for ( var k in key ) { for ( var k in key ) {
access( elems, k, key[k], exec, fn ); access( elems, k, key[k], exec, fn, value );
} }
return elems; return elems;
} }
@ -704,7 +710,7 @@ function access( elems, key, value, exec, fn ) {
exec = exec && jQuery.isFunction(value); exec = exec && jQuery.isFunction(value);
for ( var i = 0; i < length; i++ ) { for ( var i = 0; i < length; i++ ) {
fn( elems[i], key, exec ? value.call( elems[i], i ) : value ); fn( elems[i], key, exec ? value.call( elems[i], i ) : value, pass );
} }
return elems; return elems;

View file

@ -5,7 +5,7 @@ var functionReturningObj = function(value) { return (function() { return value;
test("attr(String)", function() { test("attr(String)", function() {
expect(28); expect(28);
// This one sometimes fails randomly ?! // This one sometimes fails randomly ?!
equals( jQuery('#text1').attr('value'), "Test", 'Check for value attribute' ); equals( jQuery('#text1').attr('value'), "Test", 'Check for value attribute' );
@ -190,16 +190,16 @@ test("attr(jquery_method)", function(){
elem = $elem[0]; elem = $elem[0];
// one at a time // one at a time
$elem.attr('html', 'foo'); $elem.attr({'html': 'foo'}, true);
equals( elem.innerHTML, 'foo', 'attr(html)'); equals( elem.innerHTML, 'foo', 'attr(html)');
$elem.attr('text', 'bar'); $elem.attr({'text': 'bar'}, true);
equals( elem.innerHTML, 'bar', 'attr(text)'); equals( elem.innerHTML, 'bar', 'attr(text)');
$elem.attr('css', {color:'red'}); $elem.attr({'css': {color:'red'}}, true);
ok( /^(#ff0000|red)$/i.test(elem.style.color), 'attr(css)'); ok( /^(#ff0000|red)$/i.test(elem.style.color), 'attr(css)');
$elem.attr('height', 10); $elem.attr({'height': 10}, true);
equals( elem.style.height, '10px', 'attr(height)'); equals( elem.style.height, '10px', 'attr(height)');
// Multiple attributes // Multiple attributes
@ -207,7 +207,7 @@ test("attr(jquery_method)", function(){
$elem.attr({ $elem.attr({
width:10, width:10,
css:{ paddingLeft:1, paddingRight:1 } css:{ paddingLeft:1, paddingRight:1 }
}); }, true);
equals( elem.style.width, '10px', 'attr({...})'); equals( elem.style.width, '10px', 'attr({...})');
equals( elem.style.paddingLeft, '1px', 'attr({...})'); equals( elem.style.paddingLeft, '1px', 'attr({...})');

View file

@ -12,7 +12,7 @@ test("Basic requirements", function() {
}); });
test("jQuery()", function() { test("jQuery()", function() {
expect(15); expect(22);
// Basic constructor's behavior // Basic constructor's behavior
@ -62,6 +62,22 @@ test("jQuery()", function() {
equals( jQuery([1,2,3]).get(1), 2, "Test passing an array to the factory" ); equals( jQuery([1,2,3]).get(1), 2, "Test passing an array to the factory" );
equals( jQuery(document.body).get(0), jQuery('body').get(0), "Test passing an html node to the factory" ); equals( jQuery(document.body).get(0), jQuery('body').get(0), "Test passing an html node to the factory" );
var elem = jQuery("<div/>", {
width: 10,
css: { paddingLeft:1, paddingRight:1 },
text: "test",
"class": "test2",
id: "test3"
});
equals( elem[0].style.width, '10px', 'jQuery() quick setter width');
equals( elem[0].style.paddingLeft, '1px', 'jQuery quick setter css');
equals( elem[0].style.paddingRight, '1px', 'jQuery quick setter css');
equals( elem[0].childNodes.length, 1, 'jQuery quick setter text');
equals( elem[0].firstChild.nodeValue, "test", 'jQuery quick setter text');
equals( elem[0].className, "test2", 'jQuery() quick setter class');
equals( elem[0].id, "test3", 'jQuery() quick setter id');
}); });
test("selector state", function() { test("selector state", function() {