Jquery.Hover 不适用于动态元素

2022-01-22 00:00:00 dynamic hover jquery html

这是我的代码

$(".inboxfeedlist li").hover(function(e){alert('');}

这不适用于动态创建的元素,即使我使用过

This is not working for dynamically created elements, even i have use

$(".inboxfeedlist li").bind('hover',function(){})

也不行,代码有什么问题.

is also not working, what's problem with code.

推荐答案

使用live方法:

$(".inboxfeedlist li").live('hover', function(e){alert('');});

附注 hover 确实需要两个回调函数,你的意思是 mouseover

A side note hover does take two callback functions, did you mean mouseover

相关文章