当鼠标悬停在div上时,我试图显示删除图标,但悬停事件永远不会起作用 在这里我的代码 此功能显示带数据的div
function load_pheeds()
{
var request_url = url+'pheeds/latest_pheeds';
var timeline = $('#pheed-timeline');
var loading = '<div class="progress-indicator">Loading Pheeds....</div>';
timeline.append(loading);
$.ajax({
url:request_url,
type:'GET',
dataType:'json',
error:function() { },
success:function(data)
{
if(data.message == null)
{
$('.progress-indicator').fadeOut('slow',function() {
$.each(data,function(index,pheed)
{
var del = '';
if(pheed.owner == "yes")
{
del = '<a href="#" class="deletePheed" style="display:none;">Delete Pheed</a>';
}
timeline.append(
'<div class="pheed-holder" data-id="'+pheed.pheed_id+'" data-delete="'+pheed.owner+'">'+
'<div class="user-profile-avatar"><img src="'+pheed.avatar_src+'" /></div>'+
'<div class="useridentity" data-userid="'+pheed.user_id+'">'+
'<a href="'+url+'users/info/'+pheed.username+'">'+pheed.username+'</a>'+
'</div>'+del+
'<div class="pheedContent">'+pheed.pheed+'</div>'+
'<div class="pheedMeta">'+
'<span class="timefield t:'+pheed.datetime+'000"></span>'+
'<span class="comment-count">'+pheed.comment_count+'</span>'+
'</div>'+
'</div>'
);
});
});
}
}
});
}
这是事件处理程序
$('div.pheed-holder').hover(function() {
$(this).children('.deletePheed').show();
},function() {
$(this).children('.deletePheed').hide();
});
悬停事件永远不会起作用
答案 0 :(得分:1)
我认为你的悬停处理程序会在添加元素之前设置好吗?
如果执行时不存在div.pheed-holder
,则jQuery无法添加处理程序。
在ajax响应后尝试执行.hover(..., ...)
;请改用live()
。
答案 1 :(得分:0)
如果事件的DOM对象是动态的,那么您需要使用live
(或1.7中的on
)而不是bind
。
$('div.pheed-holder').live("hover", function() {
您可能需要单独与live
绑定到mouseenter
和mouseleave
,而不是使用hover
。
答案 2 :(得分:0)
尝试绑定事件或使用:
$('div.pheed-holder').live('hover',function(){});