0

jqueryを使用してdivを更新するためのこのコードを見つけました。これはうまくいきましたが、問題があります。このプラグインは常に私のdivと出力結果を更新しました。この悪い考え。印刷する必要がありdivます。私のiejqueryで結果divに出力します。このソリューションのための方法はありますか?ありがとうresultresult != 00

jqueryコード:

<script type="text/javascript">
var auto_refresh = setInterval( 
function ()
{
$('#load_tweets').load('record_count.php').fadeIn("slow");
}, 10000);    
<body>
<div id="load_tweets"> </div>

record_count.php(非常に単純)result = 0

0
4

2 に答える 2

0
var auto_refresh = setInterval(function(){
    $.ajax({
        url:'record_count.php',
        sucsess:function(data){
        if(data!=0)    
            $('#load_tweets').html(data).fadeIn("slow");
        }
    });
}, 10000);​
于 2012-04-26T12:18:53.330 に答える
0

これで試してください:

var auto_refresh = setInterval(function () {
    $.get('record_count.php', null, function(data) {
        if (data != "0") {
            $('#load_tweets').html(data).fadeIn("slow");
        }
    }, "html")
}, 10000);
于 2012-04-26T12:19:38.150 に答える