自动重新刷新 DIv 导致 div 内的 jquery 无法工作

发布于 2024-11-17 02:01:42 字数 775 浏览 1 评论 0原文

我有以下代码

// hover show delete and refer button
    $('.friendsArea').livequery("mouseenter", function(e){
        $(this).children("a.delete").show();            
        $("a.PostShowHide_link", this).show();                      
    }); 

    // mouseout hide delete and refer button
    $('.friendsArea').livequery("mouseleave", function(e){
        $('a.delete, a.PostShowHide_link').hide();  
    }); 

要显示和隐藏鼠标悬停和鼠标移出时的记录列表的链接,

我正在研究类似于 Facebook 和 Twitter 的自动刷新 我正在使用下面的代码进行刷新,将内容加载到 div 中并刷新它

var auto_refresh = setInterval(
    function (){
    $('#posting').load('posts.php').fadeIn("slow");
    }, 10000); // refresh every 10000 milliseconds  
});

但是当上面的代码刷新 div 时,用于在鼠标悬停时显示的链接将不再显示

I have the the following code

// hover show delete and refer button
    $('.friendsArea').livequery("mouseenter", function(e){
        $(this).children("a.delete").show();            
        $("a.PostShowHide_link", this).show();                      
    }); 

    // mouseout hide delete and refer button
    $('.friendsArea').livequery("mouseleave", function(e){
        $('a.delete, a.PostShowHide_link').hide();  
    }); 

To show and hide links for a list of records on mouseover and mouseout

I am working on an auto refresh similar to that of Facebook and Twitter
I'm using the this code below to refresh to load content into a div and refresh it

var auto_refresh = setInterval(
    function (){
    $('#posting').load('posts.php').fadeIn("slow");
    }, 10000); // refresh every 10000 milliseconds  
});

But when ever the div is refreshed by the above code the links which use to show on mouseover are no longer shown

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

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

发布评论

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

评论(1

笑梦风尘 2024-11-24 02:01:42

解决了它而不是使用“.livequery()”我恢复使用.live()现在所有jquery都可以工作

solved it instead of using ".livequery()" I reverted to using .live() now all jquery works

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