2

alert();reCAPTCHAを使用していますが、新しいページを読み込むのではなく、CATPCHAが正しく入力されなかった場合の応答を表示したいと思います。どうやってやるの?

これはフォームアクションです:

<form id="form" method="POST" action="verify.php">

これをverify.phpファイルに含めると:

<?php
  require_once('recaptchalib.php');
  $privatekey = "(my key)";
  $resp = recaptcha_check_answer ($privatekey,
                                $_SERVER["REMOTE_ADDR"],
                                $_POST["recaptcha_challenge_field"],
                                $_POST["recaptcha_response_field"]);

  if (!$resp->is_valid) {
    // What happens when the CAPTCHA was entered incorrectly
    die ("The reCAPTCHA wasn't entered correctly. Go back and try it again." .
         "(reCAPTCHA said: " . $resp->error . ")");
  } else {
    // Your code here to handle a successful verification
  }
  ?>
4

2 に答える 2

3

次のようにフォーム送信時にメソッドを呼び出します--

<form id="form" method="POST" action="verify.php" onsubmit="mymethod()" >

またはjqueryを使用する、そのようなもの-

<script>

    $("form").submit(function() {
      if ($("input:first").val() == "correct") {
        $("span").text("Validated...").show();
        return true;
      }
      $("span").text("Not valid!").show().fadeOut(1000);
      return false;
    });
</script>
于 2012-06-29T09:48:48.503 に答える
0

新しいページでアラートの Javascript を記述できます。

if (!$resp->is_valid) {

  // What happens when the CAPTCHA was entered incorrectly
  echo("<script>alert('The reCAPTCHA wasn't entered correctly. Go back and try it again.');</script">);
  die();

} else {
  // Your code here to handle a successful verification
}
于 2012-06-29T15:47:02.697 に答える