嗨,我有这个代码,它不起作用,我不明白为什么
$('#thumbs > li').mouseenter(function() {
$(this).find("div").fadeIn();
}).mouseleave(function(){
$(this).find("div").fadeOut();
});
答案 0 :(得分:0)
你可能想要这个
$(document).ready(function(){
$('#thumbs > li').mouseenter(function() {
$(this).find("div").fadeIn();
}).mouseleave(function(){
$(this).find("div").fadeOut();
});
});
将代码包裹在$(document).ready(function(){...})