AJAX淡出提交

时间:2012-11-27 07:44:56

标签: php javascript jquery ajax

我有一个关于这个淡出div的快速问题。我使用facebox,并在提交后显示错误,它会显示:

http://puu.sh/1uPnF

然而,在他们发现了这个信息之后,我希望它能逐渐消失。在我的提交表单的AJAX处理程序上,这是PHP代码:

<?php
require_once('....');

$form_name = $_GET['form_name'];
$form_comment = $_GET['form_comment'];
$date = date('Y-n-j');
$ip = $_SERVER['REMOTE_ADDR'];


 if($form_name == '') {
    echo("<div class='alert alert-error-x'>Don't forget to enter a name, as we need to identify who's commenting on this article!</div>");

} else if($form_comment == '') {
    echo("<div class='alert alert-error-x'>Please do not leave the comment field blank, we want to know what you're saying!</div>");

} else {
mysql_query("INSERT INTO comment (id, articleid, name, comment, date, ip) VALUES (NULL,'{$_GET['id']}','{$form_name}','{$form_comment}','{$date}','{$ip}')");

    // output comment
    echo "<div class='alert alert-success-x'>Posted by <strong>$form_name</strong> on     <strong>{$date}</strong>$form_comment</div>";
}

?>

这是在article.php上提交的内容的输出:

 <?php

$amount_get = mysql_query("SELECT * FROM comment WHERE articleid='" . mysql_real_escape_string($_GET['id']) . "'"); $comments = mysql_num_rows($amount_get);

$grab = mysql_query("SELECT * FROM comment WHERE articleid='" . mysql_real_escape_string($_GET['id']) . "'");

if (mysql_num_rows($grab)==0) {

    echo "<div class='alert alert-note-x'>Sorry, it looks like their are no comments to be displayed, check back later!</div>";
}

    while($row = mysql_fetch_array($grab)){

    ?>

 <div id="new_comment"></div>
 <div class="article-comment">
 Posted by <b><?php echo $row['name'] ?></b> on <b><?php echo $row['date'] ?></b>  
 <br />  
 <?php echo $row['comment'] ?>
 </div>
   <?php } ?>         
</div>
</body>
</html>

现在我尝试在core.js文件中添加以下代码,该文件位于我的网站krissales.com

$(window).bind("load", function() { 
$('#new_comment').fadeOut(4000);
});

然而它没有用。如果您想测试演示,请查看:http://www.krissales.com/#/media/30.This-is-a-new-article-for-Testing

我做错了什么,拜托?

谢谢!

1 个答案:

答案 0 :(得分:1)

如果您正在使用AJAX,我建议您使用jquery的ajax方法(http://api.jquery.com/jQuery.ajax/)来调用您的PHP文件。

然后,使用该方法的success回调函数来显示正确的响应。 然后隐藏响应可以通过淡出div来完成(如果你想要那么延迟)。

if ($('#new_comment').length > 0)
{
    $('#new_comment').delay(4000).fadeOut();
}

您现在正试图在窗口加载时淡出消息,但由于您正在使用AJAX,因此不会发生页面重新加载。

希望这能帮到你!