我想大约每 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>
。
非常感谢解答。
<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>
我会将以下内容放在setTimeout
函数中:
$(".message-count").hide().html('the new message count').fadeIn('fast');