我在这个简单的jquery中缺少什么?

时间:2012-03-17 02:28:31

标签: jquery

我在这里错过了什么:

$(document).ready(function(){   
    $('cat_image_table').on("mouseenter", function(){
        $(this).fadeOut();
    });
});

显然有些东西,因为它不起作用..似乎很简单却错了..

http://jsfiddle.net/JKpev/

2 个答案:

答案 0 :(得分:8)

你的选择器中的.

$(document).ready(function(){   
    $('.cat_image_table').on("mouseenter", function(){
        $(this).fadeOut();
    });
});

答案 1 :(得分:0)

如果你使用ID选择器或者你应该放#。如果你使用类选择器。