如何终止Jquery setIntereval?

发布于 2024-10-03 21:09:45 字数 462 浏览 3 评论 0原文

我正在尝试终止刷新我的页面的 setIntreval 。但cleareIntreval() 对我不起作用。

我有

 $chatInterval = setInterval(function(){
$.post('user/home/show_conversation.php',{ f_id : userID},function(ajaxCevap){

        $('#chatbox').html(ajaxCevap);
        $('#chatbox').scrollTop = $('#chatbox').scrollHeight;

    });

},10000);

,当我单击按钮时,我使用 clearInterval($chatInterval); 但它说 $chatInterval 未定义。是的,它们在不同的函数范围内。我如何声明公共变量setInterval?

I am trying to terminate setIntreval that refresh my page. But cleareIntreval() not work for me.

I have

 $chatInterval = setInterval(function(){
$.post('user/home/show_conversation.php',{ f_id : userID},function(ajaxCevap){

        $('#chatbox').html(ajaxCevap);
        $('#chatbox').scrollTop = $('#chatbox').scrollHeight;

    });

},10000);

And when I click button I use clearInterval($chatInterval); But is says that $chatInterval not defined. yes Those are in different function scope.How can I declare common variable setInterval?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笑看君怀她人 2024-10-10 21:09:45

您在那里有一个拼写错误,并确保您创建的变量 $chatInterval 位于您调用 clearInterval() 的位置范围内。

clearInterval($chatInterval);

如果您需要在两者均可访问的范围内声明变量,请在顶层声明它,或者使用 jQuery 的 .data() 方法将其存储在某个元素上:http://api.jquery.com/data/

You have a typo there, and make sure the variable you created $chatInterval is in the scope of the location you call clearInterval() from.

clearInterval($chatInterval);

If you need to declare the variable in a scope accessible to both, either declare it at the top-level or store it on an element somewhere using the .data() method of jQuery: http://api.jquery.com/data/

有木有妳兜一样 2024-10-10 21:09:45

我解决了从

    chatInterval = setInterval(function(){
$.post('user/home/show_conversation.php',{ f_id : userID},function(ajaxCevap){

        $('#chatbox').html(ajaxCevap);
        $('#chatbox').scrollTop = $('#chatbox').scrollHeight;

    });

},10000);

现在删除 $ 元素的问题,我可以在任何函数中调用它。

I solved it deleting $ element from

    chatInterval = setInterval(function(){
$.post('user/home/show_conversation.php',{ f_id : userID},function(ajaxCevap){

        $('#chatbox').html(ajaxCevap);
        $('#chatbox').scrollTop = $('#chatbox').scrollHeight;

    });

},10000);

Now I can call it in any function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文