mouseenter JavaScript无效

时间:2012-11-12 00:40:46

标签: javascript css

嗨,我有这个代码,它不起作用,我不明白为什么

$('#thumbs > li').mouseenter(function() {
    $(this).find("div").fadeIn();
}).mouseleave(function(){
     $(this).find("div").fadeOut();
});
​

这是整件事http://jsfiddle.net/8Q24N/

1 个答案:

答案 0 :(得分:0)

你可能想要这个

$(document).ready(function(){
    $('#thumbs > li').mouseenter(function() {
        $(this).find("div").fadeIn();
    }).mouseleave(function(){
         $(this).find("div").fadeOut();
    });
});​

将代码包裹在$(document).ready(function(){...})

DEMO