-2

ユーザーが新しいメールがあることを確認できるように、約 5 秒ごとにテキストをリロードしたいと考えています...私のコードは次のようになります。

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

これを5秒ごとにリロードするのを手伝ってくれる人はいますか? Javascript / jQuery など。

リフレッシュしたい<span class="message-count"> C_Mess </ span>

答えてくれてとても感謝しています。

4

2 に答える 2

0

setTimeout関数内に次を配置します。

$(".message-count").hide().html('the new message count').fadeIn('fast');
于 2013-02-12T20:57:10.990 に答える
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>
于 2013-02-12T20:50:26.117 に答える