0

人々がサイトへの関心を登録できるプロジェクト用の小さな連絡先フォームを作成し、自分自身に関するいくつかの詳細を提供します。そこで、このチュートリアルに従って、ニーズに合わせて変更することにしました: http://bit.ly/13zQ7em

メールを送信するために PHP と jQuery を変更しましたが、現在はそうしていますが、jQuery が成功メッセージを送信しない理由や、入力時にエラーを表示する理由がわかりません.

私が見る限り、すべて問題なく動作しているはずですが、明らかに何かを見逃していて、何が原因なのかわかりません。だからどんな助けでも大歓迎です!

現在のライブフォーム: http://bit.ly/12yS1eh

HTML :

<div id="interested">
    <div class="content">
        <h2>INTERESTED?</h2>
            <p>If you would like to stay up to date with upcoming content, release dates and chances to win signed prints of the photos, 
            just fill in your details below.</p>
        <div id="thanks"></div>
        <form action="javascript:alert('success!');" id="interestForm">
                <div id="formLeft">
                        <input type="text" id="firstName" name="firstName" value="" placeholder="First name" />
                        <input type="text" id="email" name="email" value="" placeholder="email@email.com" />
                </div>

                <div id="formMiddle">
                        <input type="text" id="lastName" name="lastName" value="" placeholder="Last name" />
                        <input type="text" id="country" name="country" value="" placeholder="Your country" />
                </div>

                <div id="formRight">
                    <input type="submit" name="submit" value="SEND" id="submit" />
                </div>
        </form>
    </div>
</div>

jQuery :

    $(document).ready(function(){
$("#interestForm").submit(function(){

var str = $(this).serialize();

   $.ajax({
   type: "POST",
   url: "contact_form/contact.php",
   data: str,
   success: function(msg){

$("#thanks").ajaxComplete(function(event, request, settings){

if(msg == 'OK') // If the email is sent show 'Thank You' message and hide the form
{
result = '<div class="notification_ok">Thanks for registering your interest, we\'ll be in contact soon with more information about the iBook.</div>';
$("#interestForm").hide();
}
else
{
result = msg;
}

$(this).hide();
$(this).html(result).slideDown("slow");

$(this).html(result);

});

}

 });

return false;

});

});

PHP:

    <?php

include 'config.php';
    error_reporting (E_ALL ^ E_NOTICE);
    $post = (!empty($_POST)) ? true : false;

if($post)
    {
        include 'functions.php';
        $firstName = stripslashes($_POST['firstName']);
        $lastName = stripslashes($_POST['lastName']);
        $email = trim($_POST['email']);
        $country = stripslashes($_POST['country']);

        $message = "";
        $message .= "First Name: ";
        $message .= $firstName;
        $message .= "\n";
        $message .= "Last Name: ";
        $message .= $lastName;
        $message .= "\n";
        $message .= "Email: ";
        $message .= $email;
        $message .= "\n";
        $message .= "Country ";
        $message .= $country;


        $error = '';

// Check firstName
if(!$firstName)
    {
        $error .= 'You forgot to enter your first name.<br />';
    }

// Check lastName
if(!$lastName)
    {
        $error .= 'You forgot to enter your last name.<br />';
    }

// Check country
if(!$country)
    {
        $error .= 'You forgot to enter your country.<br />';
    }

// Check email
if(!$email)
    {
        $error .= 'You forgot to enter your e-mail id.<br />';
    }
if($email && !ValidateEmail($email))
    {
        $error .= 'Invalid E-mail id !!!<br />';
    }
if(!$error)
    {
        $subject = 'Hi, '.$firstName. '  ' .$lastName. '  is interested in Ireland - In a new light';
        $mail = mail(WEBMASTER_EMAIL, $subject, $message,
            "From: ".$firstName." ".$lastName." <".$email.">\r\n"
            ."Reply-To: ".$email."\r\n"
            ."X-Mailer: PHP/" . phpversion());
if($mail)
    {
        echo 'OK';
    }
}
else
    {
        echo '<div class="notification_error">'.$error.'</div>';
    }
}
?>

事前に助けてくれてありがとう!

4

2 に答える 2

1

.ajaxComplete()ハンドラーを間違ってアタッチしています。

jQuery 1.8 以降、.ajaxComplete() メソッドはドキュメントにのみ添付する必要があります。

jQuery 1.9の代わりに使用することもできます2.0(IE > 9 ではサポートされていません)。

ハンドラーを削除できます (とにかくあまり使用していないため)

$(document).ready(function() {
                $("#interestForm").submit(function() {
                    var str = $(this).serialize();
                    var thx = $("#thanks");
                    $.ajax({
                        type: "POST",
                        url: "contact_form/contact.php",
                        data: str,
                        success: function(msg) {

                                if (msg == 'OK') // If the email is sent show 'Thank You' message and hide the form
                                {
                                    result = '<div class="notification_ok">Thanks for registering your interest, we\'ll be in contact soon with more information about the iBook.</div>';
                                    $("#interestForm").hide();
                                }
                                else
                                {
                                    result = msg;
                                }
                                thx.hide();
                                thx.html(result).slideDown("slow");

                                //thx.html(result); <-- you don't need to put it 2 times
                        }
                    });
                    return false;
                });
            });

または、他の場所で使用し$(document).ajaxComplete();ますが、success: function() {} ..

于 2013-05-16T23:06:27.497 に答える
0

あなたのJavaScriptファイルの束がロードされません:

  • js/greensock/TweenMax.min.js
  • js/jquery.superscrollorama.js
  • js/smoothscroll.js
  • js/jquery.cycle2.js
  • js/modernizr-1.7.min.js

それと何か関係があるのではないでしょうか?

おそらく、それらが実際には検証スクリプトではないためではありません...しかし、潜在的な問題としてそれを軽視するために修正する価値があります. さらに、CSS ファイルの 1 つも読み込まれません

  • css/mob_global.css
于 2013-05-16T22:55:08.580 に答える