为什么$(this).children
在以下代码中不起作用?
$('.home-box').hover(function() {
$(this).children('home-box-caption a').animate({
bottom: -12,
}, 200);
}, function(){
$(this).children('home-box-caption a').animate({
bottom: -24,
}, 200);
});
.home-box {
background: url(images/home_box_bg.png) no-repeat 0 0;
cursor: pointer;
float: left;
margin: 25px 13px 25px 0;
position: relative;
width: 230px;
height: 160px;
}
当我悬停时,.home.box
什么也没有发生。