我想知道是否可以让提交表单按钮执行多项操作。目前我正在使用自定义表单,该表单将使用 AJAX 发送到 Google 电子表格。我也在使用 Blueimp Jquery File Upload 插件。我希望的是,onsubmit 所有相关信息都可以发送到 Google 电子表格,并将上传的图像发送到我的服务器。我对任何不涉及 Blueimp Jquery Upload 的潜在解决方案持开放态度,并且我正在使用 Google 电子表格来允许多个合作者访问数据。
我对遗漏的任何细节表示歉意,因为我不精通文件上传,但请询问,我会尽力提供任何和所有相关信息。
谷歌电子表格提交代码:
// Handle form submission
$('form').submit(function(e) {
var button = $('input[type=submit]', this),
data = $(this).serialize();`
e.preventDefault();
if (validate($(this))) {
button.button('loading');
$.ajax({
type: 'POST',
url: formUrl,
data: data,
complete: function() {
button.button('reset');
window.location = 'index.html#new';
}
});
}
function validate(form) {
$('.control-group').removeClass('error');
$('input, textarea', form).each(function() {
var tag = $(this)[0].tagName.toLowerCase(),
type = $(this).attr('type');
// Validate radio buttons
if (tag === 'input' && type === 'radio') {
var name = $(this).attr('name');
if ($('[name="' + name + '"]:checked').length < 1) {
$(this).parent().parent().parent().addClass('error');
}
}
// Validate text fields
if ((tag === 'input' && type === 'text') || tag === 'textarea') {
if ($(this).val() === '' && !$(this).parent().hasClass('radio')) {
$(this).parent().parent().addClass('error');
}
}
});
if ($('.control-group.error').length < 1) return true;
$('.control-group.error').length
$('html, body').animate({
scrollTop: $('.control-group.error').offset().top - 20
}, 500);
return false;
}
});