jQuery单击事件中断setInterval

时间:2013-09-23 14:17:25

标签: javascript jquery ajax

我正在创建脚本,我在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中有没有针对我的问题的解决方案?

P.S。我希望你能理解我所写的内容,我知道我的英语并不像我希望的那样好。

0 个答案:

没有答案