0

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

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

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

4

1 回答 1

0

你可能想要这个

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

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

演示

于 2012-11-12T00:47:15.887 回答