jquery children条件

2025-04-16 08:52:20
推荐回答(1个)
回答1:

nt).ready(function(){
$('.imm').mouseover(function(){
$(this).css()
$(this).children('span').hide();
}).mouseout(function(){
$(this).css()
$(this).children('span').show();
});
});

能否满足您的需求?