每当 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 。