嗨,我有这段代码,但它不起作用,我不明白为什么
$('#thumbs > li').mouseenter(function() {
$(this).find("div").fadeIn();
}).mouseleave(function(){
$(this).find("div").fadeOut();
});
嗨,我有这段代码,但它不起作用,我不明白为什么
$('#thumbs > li').mouseenter(function() {
$(this).find("div").fadeIn();
}).mouseleave(function(){
$(this).find("div").fadeOut();
});
你可能想要这个
$(document).ready(function(){
$('#thumbs > li').mouseenter(function() {
$(this).find("div").fadeIn();
}).mouseleave(function(){
$(this).find("div").fadeOut();
});
});
将代码包裹在里面$(document).ready(function(){...})
演示。