1

我正在创建使用 jQuery 的 AJAX 的脚本。我有一个问题,因为在我的网站上我有隐藏的对象。此外,我使用 setInterval 经常刷新我的一段脚本。一切正常,但直到我单击链接以将此隐藏对象设置为可见。当我单击链接并使对象可见时, setInterval 停止刷新页面。这是我的 AJAX 代码:

$(document).ready(setInterval(function() {  
    $.ajax({
       type: "POST",
       url: "score.php",
       success: function(html){
           $("#loadplace").hide().show().html(html);
       }
    });
    return false;}, 60000));

这是链接代码:

$('div#bar a#squad1').click(function(e) {
    e.preventDefault();
    $('div#s1 table.events1').hide();       
    $('div#s1 table.index_players1').fadeIn();

});
$('div#bar a#events1').click(function(e) {
    e.preventDefault();
    $('div#s1 table.index_players1').hide();
    $('div#s1 table.events1').fadeIn();
});

jQuery 中有什么解决方案可以解决我的问题吗?

PS我希望你能理解我写的东西,我知道我的英语没有我希望的那么好。

4

0 回答 0