这是我的代码
$(".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
这篇关于Jquery.Hover 不适用于动态元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!