我现在用的是第一种方法解决的。
setTimeout(function(){
$(".zhengshu").hover(function(){
_this=$(this);
_this.children().eq(0).addClass("file_hover");
},function(){
_this.children().eq(0).removeClass("file_hover");
})
},1000);
目前只有一种方法解决。
有别的方法吗?
相关分类