text shortHand If Else

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text shortHand If Else相关的知识,希望对你有一定的参考价值。

var maxHeight = -1;
boxes.each(function (){
  //(question)?(result if true):(result is false)
  //maxHeight = maxHeight > $(this).outerHeight() ? maxHeight : $(this).outerHeight(); //shorthand
  if (maxHeight > $(this).outerHeight() ) {
    maxHeight = maxHeight
    console.log('isit')
  } else {
     maxHeight = $(this).outerHeight();
    console.log('isit22222')
  }
}

以上是关于text shortHand If Else的主要内容,如果未能解决你的问题,请参考以下文章

text IF ELSE声明

微信小程序 --- if/else条件渲染

javascript中的if / if else逻辑

微信小程序判断 wx:if wx:else

如何在 playwright 中编写此测试:if element text as int is > 0 test pass else test fail

if/else vs 三元运算符