我试过这段代码:
$(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']);
});