如何做到这一点?

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


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

谢谢。

最佳答案

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

09-13 10:37