如果特定容器存在类名,则要禁用功能。在代码下方使用。
if($("testElement1").hasClass("Content")){
!testFunction();
}
else{
}
想要添加内部(现有代码)
$(window).on('scroll', function(){
testFunction();
}
由于
答案 0 :(得分:1)
如果我已经理解了你想要实现的目标,你只需要在if
条件下反转逻辑:
$(window).on('scroll', function() {
// if test element *does not* have the class 'Content'
if (!$("testElement1").hasClass("Content"))
testFunction();
});