如何构造if ... else语句返回true

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何构造if ... else语句返回true相关的知识,希望对你有一定的参考价值。

完整代码https://codepen.io/3noki/pen/xjyErQ

function checkForMatch() {
  if ( $(openedCardsList[0]).is(openedCardsList[1]) ) {
  $(openedCardsList[0]).removeClass('open show').addClass('match');
  $(openedCardsList[1]).toggleClass('open show');
  $(openedCardsList[1]).toggleClass('match');
  $(openedCardsList) = [];
  }

  else {unFlip()}
}

这段代码目前只返回false值,我想知道如何以纯DOM或纯jquery格式构造它,以便能够返回一个真值。

openedCardsList[0]===openedCardsList[1]

也没有回归真实

当数组0和1的卡相同时,我希望该值返回true。

答案

检查/匹配(FontAwesome)图标class名称怎么样?

因此,在创建卡(或生成其html)时,您需要将fa添加到元素的“数据”(使用jQuery.data()),如下所示:

function createCardHTML() {
  symbol = cards.children("i");
  symbol.each(function(index, item) {
    $(item).addClass(cardsList[index])
      // If the icon's class name is `fa-diamond`, `$(item).data('fa')` would be `diamond`.
      .data('fa', cardsList[index].substring(3)); // <- here's the data
  });
  return symbol;
}

然后,在checkForMatch()

var b = $('i.fa', openedCardsList[0]).data('fa');
var c = $('i.fa', openedCardsList[1]).data('fa');
var eq = ( b && c && b === c );

Demo

以上是关于如何构造if ... else语句返回true的主要内容,如果未能解决你的问题,请参考以下文章

使用jquery中的if else语句获取返回真值

if - else 语句

魅力python------if - else 语句

JAVA条件语句之if...else

Python新手学习基础之条件语句——if/else语句

JS流程控制