-1

我正在尝试为我的网站创建一个评论部分,并且需要在此人提交评论(并且包含错​​误)后,它会在不刷新页面的情况下显示错误(一个新的 HTML 元素)。我对 AJAX/JQuery 几乎一无所知,所以我需要一些帮助。

这是我到目前为止所拥有的:

<?php
  if(isset($_POST['reply_submit'])) {
    $reply = $_POST['new_reply'];
    $reply_message = "";

    if(empty($reply)) {
      $reply_message = "Your comment is too short.";
    }
  }
?>

<html lang="en">
  <body>
    <form class="no-margin" method="POST" action="">
      <textarea name="new_reply" placeholder="Write a reply..."></textarea>
      <button name="reply_submit" class="btn post-button" type="submit">Post' . (isset($reply_message) ? '<div class="comment-warning">' . $reply_message . '</div>' : '') . '</button>
    </form>
  </body>
</html>

所以我需要它做的是,如果该人的评论框不符合条件(在本例中为空字段),我需要它在不刷新页面的情况下显示此错误行:

<button name="reply_submit" class="btn post-button" type="submit">Post' . (isset($reply_message) ? '<div class="comment-warning">' . $reply_message . '</div>' : '') . '</button>

请帮忙。

4

1 回答 1

0

HTML基本相同,添加 onsubmit 操作

<form class="no-margin" method="POST" action="" onsubmit=verify();>
      <textarea name="new_reply" id="new_reply_textarea" placeholder="Write a reply..."></textarea>
...
</form>
<div class=comment-warning></div>

JS

function verify()
{
if ($('#new_reply_textarea').is(':empty'))
{
$('.comment-warning').html("Your comment is too short.");
return false;
}
else
{
return true;
}
}
于 2013-08-27T03:51:56.577 回答