gpt4 book ai didi

php - 我的表格只提交一次

转载 作者:行者123 更新时间:2023-11-30 05:53:56 25 4
gpt4 key购买 nike

http://www.gamereview.tv/email/

提交按钮只能使用一次。如果第一次尝试出错,您将无法再次点击该按钮。测试时,键入无效的电子邮件。它显示提示,然后在您修复它后,该按钮不再起作用。这是为什么?

JavaScript:

$('#submit').click(function() {
$("#message").slideUp(200,function() {
$('#message').hide();

// Kick in Validation
$('#name, #subject, #phone, #comments, #website, #verify, #email').triggerHandler("focusout");

if ($('#contact mark.error').size()>0) {
if(shake == "Yes") {
$('#contact').effect('shake', { times:2 }, 75, function(){
$('#contact input.error:first, #contact textarea.error:first').focus();
});
} else $('#contact input.error:first, #contact textarea.error:first').focus();

return false;
}

});
});

$('#contactform').submit(function(){

if ($('#contact mark.error').size()>0) {
if(shake == "Yes") {
$('#contact').effect('shake', { times:2 }, 75);
}
return false;
}

var action = $(this).attr('action');

$('#submit')
.after('<img src="assets/ajax-loader.gif" class="loader" />')
.attr('disabled','disabled');

$.post(action, {
name: $('#name').val(),
email: $('#email').val(),
phone: $('#phone').val(),
website: $('#website').val(),
subject: $('#subject').val(),
comments: $('#comments').val(),
verify: $('#verify').val()
},
function(data){
$('#message').html( data );
$('#message').slideDown();
$('#contactform img.loader').fadeOut('slow',function(){$(this).remove()});
$('#contactform #submit').attr('disabled','');
if(data.match('success') != null) $('#contactform').slideUp('slow');

}
);

return false;

});

最佳答案

您的代码禁用提交按钮,并且仅在发布成功时才重新启用它。

关于php - 我的表格只提交一次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13106256/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com