0

每当 div 改变高度时,我都试图停止 .hover 动作。

这是我到目前为止的代码:

if (secondary.height() <= 300) {
    secondary.css("height",300);
    secondary.hover(function(){
        jQuery('.comments-holder').css("height",mediumHeight);
    },
    function(){             
        jQuery('.comments-holder').css("height",minHeight);     
    });
} else {
    // DO SOMETHING ELSE
}

我遇到的问题是,无论 if 语句暗示什么,都会触发 .hover 。

4

1 回答 1

1

检查悬停功能内的高度。

secondary.hover(function(){
    if (secondary.height() <= 300) {
      jQuery('.comments-holder').css("height",mediumHeight);
      }
},
function(){    
    if (secondary.height() <= 300) {         
     jQuery('.comments-holder').css("height",minHeight);    
    } 
});
于 2013-09-25T20:41:05.793 回答