我在这里错过了什么:
$(document).ready(function(){
$('cat_image_table').on("mouseenter", function(){
$(this).fadeOut();
});
});
显然有些东西,因为它不起作用..似乎很简单却错了..
答案 0 :(得分:8)
你的选择器中的.
:
$(document).ready(function(){
$('.cat_image_table').on("mouseenter", function(){
$(this).fadeOut();
});
});
答案 1 :(得分:0)