0

总而言之,我的页面上有一个表格,用于发送电子邮件。在表单页面上,我有以下代码:

<input type="text" name="Name" id="your_name" class="contact_form_input_text">
<input type="text" name="Email_Address" id="your_email" class="contact_form_input_text">
<input type="text" name="fill_me_out" id="fill_me_out">
<input type="button" value="Send" id="submit_contact_form_button">

第一个文本框是一个lamecaptcha,我在PHP 端检查它以确保它没有被填写。我还使用一些 JS 来隐藏它:

jQuery(function(){
    jQuery("#fill_me_out").hide();
});

然后,在我的页面使用 jQuery 验证器提交之前,我进行了以下表单验证:

jQuery("#contact_form").validate({
    rules: {
        Email_Address: {
            required: true,
            email: true
        },
        Name: {
            required: true
        }
    },
    messages: {
        Email_Address: {
            required: "Please enter an email address!",
            email: "Please enter a valid email address!"
        },
        Name: {
            required: "Please enter your Name!"
        }
    }
});

jQuery("#submit_contact_form_button").click(function(event) {
      if (jQuery("#contact_form").valid()) {
        challengeField = jQuery("input#recaptcha_challenge_field").val();
            responseField = jQuery("input#recaptcha_response_field").val();
            var html = jQuery.ajax({
            type: "POST",
            url: site_url + "ajax.recaptcha.php",
            data: "recaptcha_challenge_field=" + challengeField + "&recaptcha_response_field=" + responseField,
            async: false
            }).responseText;

            if(html == "success")
            {
                //$("#captchaStatus").html(" ");
                // Uncomment the following line in your application
                //return true;
                jQuery("#contact_form").submit();
            }else{
                jQuery("#captchaStatus").html("Your captcha is incorrect. Please try again");
                Recaptcha.reload();
                return false;
            }
      }
      return false;
    });

如果所有内容都正确填写,则页面提交。我有以下检查来检查蹩脚的验证码:

$lamecaptcha_check = $_POST['fill_me_out'];
if($lamecaptcha_check!=""){
    echo '[box style="alert"]Why are you trying to spam us? It could be because you don\'t have Javascript enabled and filled out an incorrect box![/box]';
}else{
    //Send the form using mail
}

提交表单是一个按钮而不是提交,因此它必须通过 jquery 验证才能提交。不知何故,我仍然收到空白电子邮件。有谁知道我可以做些什么来防止垃圾邮件/空白电子邮件?我在想我应该检查后端的变量以确保它们不是空白的,但是除非有一些值,否则甚至不应该提交表单,所以我需要在初始页面上提供一个有效的电子邮件地址。任何想法表示赞赏!

谢谢!

4

1 回答 1

1

仅仅因为您有一个提交按钮通过 jQuery 工作,并不意味着不能提交表单。

垃圾邮件机器人可能会检查表单的 HTML,查看不同的字段,然后发送带有相关信息的 POST 请求。它不会评估您的 jQuery。

如果您想做这样的事情,请设置表单的action="javascript:;",然后在提交之前在您的 jQuery 中将其更新为实际值。

于 2013-01-02T15:36:09.757 回答