flag ? $('body').addClass('hover') : $('body').removeClass('hover') ;
(expr1) ? (expr2) : (expr3);
与if(){}else{}相似
如果expr1值为真,则expr2,否则expr3;
flag ? $('body').addClass('hover') : $('body').removeClass('hover') ;
(expr1) ? (expr2) : (expr3);
与if(){}else{}相似
如果expr1值为真,则expr2,否则expr3;