刷新div或加载文本而不刷新整个页面

时间:2013-02-12 20:40:51

标签: html text refresh

我想每5秒重新加载一次文本,以便我的用户看到他们有新邮件...我的代码如下所示:

If C_Mess "0" Then <span class="message-count"> C_Mess </ span> Else 0 End If

任何人都可以帮助我每5秒钟重新加载一次吗? Javacript / jQuery或其他什么。

我想刷新<span class="message-count"> C_Mess </ span>

非常感谢答案。

2 个答案:

答案 0 :(得分:0)

<html>
<head>
<!-- For ease i'm just using a JQuery version hosted by JQuery- you can download any   version and link to it locally -->
<script src="http://code.jquery.com/jquery-latest.js"></script>

<script>

    var refreshId = setInterval(function(){
       $('#responsecontainer').fadeOut("slow").load('response.php').fadeIn("slow");
    }, 5000);

</script>
</head>
<body>

    <div id="responsecontainer">
    </div>
</body>

答案 1 :(得分:0)

我会将以下内容放在setTimeout函数中:

$(".message-count").hide().html('the new message count').fadeIn('fast');