mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
see mailinglist
This commit is contained in:
parent
d7856eb24b
commit
5ee555c9f0
18
ajax/ajax.js
18
ajax/ajax.js
@ -146,12 +146,12 @@ $.fn.formValues = function(sButton) {
|
|||||||
// Loop the shite
|
// Loop the shite
|
||||||
$('*', this).each(function() {
|
$('*', this).each(function() {
|
||||||
// Skip elements not of the types in elp
|
// Skip elements not of the types in elp
|
||||||
if (!elp[this.tagName])
|
if (!elp[this.tagName.toUpperCase()])
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Skip disabled elements
|
// Skip disabled elements, submit buttons and image buttons
|
||||||
if (this.disabled)
|
if ((this.disabled) || (this.type == 'submit') || (this.type == 'image'))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Skip non-selected nodes
|
// Skip non-selected nodes
|
||||||
if ((this.parentNode.nodeName == 'SELECT') && (!this.selected))
|
if ((this.parentNode.nodeName == 'SELECT') && (!this.selected))
|
||||||
@ -169,9 +169,15 @@ $.fn.formValues = function(sButton) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Add submit button if needed
|
// Add submit button if needed
|
||||||
if (sButton && (sButton !== null))
|
if (sButton && (sButton !== null)) {
|
||||||
a.push({ name: sButton, value: 'x' });
|
var el = $(sButton).get(0);
|
||||||
|
a.push({
|
||||||
|
name: el.name || el.id || el.parentNode.name || el.parentNode.id,
|
||||||
|
value: el.value
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Done
|
||||||
return a;
|
return a;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user