0

我发现这段代码用于使用 jquery 刷新我的 div。这有效,但我有任何问题。这个插件总是刷新我的 div 和打印结果。这个坏主意。我需要打印divresult何时result != 0。在我的 ie jquery0中打印结果 div。这个解决方案有什么办法吗?谢谢

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(非常简单)结果 = 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 回答