1
我有下面的代碼自動refeashing DIV原因jQuery的內部DIV不工作
// 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
});
的但當有史以來d四是通過上面的代碼顯示在鼠標懸停在使用這些鏈接不再顯示
是#posting接收.friendsArea類的元素? – kwicher
#posting是刷新的主要div,它包含單個帖子.friendsArea,其中包含單個鏈接 – Oudin