将复选框添加到现有联系表单

时间:2016-06-20 17:50:18

标签: javascript php html ajax twitter-bootstrap

我有一个现有的联系表单,我通过名为Freelancer的StartBoostrap模板获得...它使用Javascript并通过PHP文件将该信息发送到我的电子邮件。

编辑:为了记录,我对我将要做的事情没有经验。

我想添加一个复选框选项,以便人们可以告诉我他们是否希望被列入新闻通讯列表...我不是JS / PHP人员,严格来说是前端......我和#39;已经通过了thisthis,但我似乎无法让他们在我现有的限制条件下工作,如果选中此框,则会显示电子邮件。

这是我的HTML:

    $(function() {

    $("input,textarea").jqBootstrapValidation({
        preventSubmit: true,
        submitError: function($form, event, errors) {
            // additional error messages or events
        },
        submitSuccess: function($form, event) {
            // Prevent spam click and default submit behaviour
            $("#btnSubmit").attr("disabled", true);
            event.preventDefault();

            // get values from FORM
            var name = $("input#name").val();
            var email = $("input#email").val();
            var phone = $("input#phone").val();
            var message = $("textarea#message").val();
            var firstName = name; // For Success/Failure Message
            // Check for white space in name for Success/Fail message
            if (firstName.indexOf(' ') >= 0) {
                firstName = name.split(' ').slice(0, -1).join(' ');
            var checkbox = $("#mail_list_checkbox").val();
            $('#mail_list_checkbox').val();
            if ($('#mail_list_checkbox').is(":checked"))
            {
            // it is checked
            }
            }
            $.ajax({
                url: "././mail/contact_me.php",
                type: "POST",
                data: {
                    name: name,
                    phone: phone,
                    email: email,
                    message: message,
                    checkbox: checkbox
                },
                cache: false,
                success: function() {
                    // Enable button & show success message
                    $("#btnSubmit").attr("disabled", false);
                    $('#success').html("<div class='alert alert-success'>");
                    $('#success > .alert-success').html("<button type='button' class='close' data-dismiss='alert' aria-hidden='true'>&times;")
                        .append("</button>");
                    $('#success > .alert-success')
                        .append("<strong>Your message has been sent. </strong>");
                    $('#success > .alert-success')
                        .append('</div>');

                    //clear all fields
                    $('#contactForm').trigger("reset");
                },
                error: function() {
                    // Fail message
                    $('#success').html("<div class='alert alert-danger'>");
                    $('#success > .alert-danger').html("<button type='button' class='close' data-dismiss='alert' aria-hidden='true'>&times;")
                        .append("</button>");
                    $('#success > .alert-danger').append("<strong>Sorry " + firstName + ", it seems that my mail server is not responding. Please try again later!");
                    $('#success > .alert-danger').append('</div>');
                    //clear all fields
                    $('#contactForm').trigger("reset");
                },
            })
        },
        filter: function() {
            return $(this).is(":visible");
        },
    });

    $("a[data-toggle=\"tab\"]").click(function(e) {
        e.preventDefault();
        $(this).tab("show");
    });
});

// When clicking on Full hide fail/success boxes
$('#name').focus(function() {
    $('#success').html('');
});

这是我的JS:

<?php
// Check for empty fields
if(empty($_POST['name'])        ||
   empty($_POST['email'])       ||
   empty($_POST['phone'])       ||
   empty($_POST['message']) ||
   empty($_POST['checkbox'])    ||
   !filter_var($_POST['email'],FILTER_VALIDATE_EMAIL))
   {
    echo "No arguments Provided!";
    return false;
   }

$name = $_POST['name'];
$email_address = $_POST['email'];
$phone = $_POST['phone'];
$message = $_POST['message'];
$message = $_POST['checkbox'];

// Create the email and send the message
$to = 'me@mywebsite.com'; // Add your email address inbetween the '' replacing yourname@yourdomain.com - This is where the form will send a message to.
$email_subject = "Website Contact Form:  $name";
$email_body = "Hey!! You have received a new message from your website contact form.\n\n"."Here are the details:\n\nName: $name\n\nEmail: $email_address\n\nPhone: $phone\n\nMessage:\n$message\n\nDo they want to join the mailing list: $checkbox";
$headers = "From: me@mywebsite.com\n"; // This is the email address the generated message will be from. We recommend using something like noreply@yourdomain.com.
$headers .= "Reply-To: $email_address"; 
mail($to,$email_subject,$email_body,$headers);
return true;            
?>

这是PHP:

Sub MySub()

    Set i = Sheets("Original data")
    Set e = Sheets("New Stuff")
    Dim d
    Dim j 'row
    Dim column
    d = 1
    j = 2
    mycolumn = 1
    e.Rows(1).Value = i.Rows(1).Value

    Do Until IsEmpty(Cells(j, column))

        Do Until IsEmpty(Cells(j, column))

            If InStr(1, i.Cells(j, column).Value, DESIRED TEXT, vbTextCompare) <> 1 Then
                d = d + 1
                e.Rows(d).Value = i.Rows(j).Value
            End If

            j = j + 1
        Loop
        j = 2
        column = column + 1
    Loop
End Sub

感谢您的时间。

1 个答案:

答案 0 :(得分:0)

1)您的复选框没有唯一标识符。您需要像其他输入一样添加ID或类(例如,名称输入具有id =&#34; name&#34;标识符,允许您在JavaScript / PHP中定位它。)

2)你的JS文件有正确的想法&#34;复选框:复选框&#34;,但不幸的是,你错过了复选框变量。您忘记为复选框获取值(请参阅下面的行&#34; //从FORM&#34获取值; - 您需要添加&#34; var复选框&#34;并从复选框中提取数据.val。)有关如何执行此操作的详细信息,请参阅Get checkbox value in jQuery

3)您的PHP文件与JS文件一样,缺少复选框信息。由于没有发布复选框的信息,因此您无法调用该值。您需要定义一个与复选框的POST数据相关联的复选框变量。目前没有为该复选框提取任何信息,并且与该复选框关联的正文内容中未显示任何信息。

JavaScript / jQuery被认为是前端,所以你应该多付出一些努力来解决这个问题!任何经验丰富的前端开发人员都应该对像这个IMO这样简单的jQuery任务感到满意。

您正在使用的PHP脚本也是一个非常简单的脚本,您可以轻松地阅读它以了解元素的调用方式,以及它们如何显示在正在发送的电子邮件中发送等等。

希望这有帮助。