我试过这段代码:
$(function(){
$('.media-in').bind('mouseover',function(){
$(this).children('.media-options').show();
});
$('.media-in').bind('mouseout',function(){
$(this).children('.media-options').hide();
});
$(window).on('scroll',function(){
$('.media-in').unbind('mouseover');
});
});
它没有按预期工作。我希望unbind
当我滚动页面时mouseover
上发生的事件,我该怎么做?
此外,有没有办法在页面滚动数组的unbind
事件?类似的东西:
$(window).scroll(function(){
$(this).unbind(['mouseover','click','mouseout']);
});