自动重新刷新 DIv 导致 div 内的 jquery 无法工作
我有以下代码
// 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决了它而不是使用“.livequery()”我恢复使用.live()现在所有jquery都可以工作
solved it instead of using ".livequery()" I reverted to using .live() now all jquery works