gpt4 book ai didi

javascript - jquery的if语句

转载 作者:行者123 更新时间:2023-11-28 21:26:38 25 4
gpt4 key购买 nike

如何解决这个问题?

$(this).click(function(){
if(showLarge == 1 && !$('.loginLarge_wrap')){
//
}
});

这里的想法是,有一个条件 showLarge 等于 1 并且不等于 .loginLarge_wrap

谢谢。

最佳答案

$(this).click(function() {
if ( ( showLarge == 1 ) && ( showLarge != $('.loginLarge_wrap' ) ) ) {
//
}
});

关于javascript - jquery的if语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4871190/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com