1

对于一个小型益智/记忆游戏,我想比较两块拼图。如果它们相同(具有相同的字母),我想提醒('匹配')。我认为我的方法是正确的,但现在其中一个变量似乎超出了范围,因为我不知道我应该把它放在我的代码中的哪个位置。所以现在它返回第二块,但第一块保持未定义。你能帮我吗?非常感谢!

单击 shuffle & show,然后单击 2 件,您将看到“未定义”语句。我想知道为什么它不起作用,什么使它起作用以及为什么:P

HTML

<button id="shuffle">Show and Shuffle</button>

<div id="container">
   <div class="choices"><div class="letter">A</div></div>
   <div class="choices"><div class="letter">B</div></div>
   <div class="choices"><div class="letter">C</div></div>
   <div class="choices"><div class="letter">A</div></div>
</div>

JS

var amountofclicks = 0;
var firstcard = false;
var secondcard = false;

$('#shuffle').bind('click', function() {

    var divs = $("div.choices").get().sort(function() {
        return Math.round(Math.random());
    }).slice(0, 16);

    $(divs).appendTo(divs[0].parentNode).show();

});

$('.choices').bind('click', function() {

    if (amountofclicks < 2) {
        amountofclicks++;
        $(this).unbind('click');
        if (amountofclicks == 1) {
            firstcard = true;
            var txt = $(this).find('.letter').text();

        }

        if (amountofclicks == 2) {
            secondcard = true;

            var txt2 = $(this).find('.letter').text();
            alert(txt + ' ' + txt2);


        }

    }

});

有问题的 JSFIDLLE

4

2 回答 2

3

您需要将txt变量移到函数之外,以便在第二次单击时读取它。像这样的东西:

var amountofclicks = 0;
var firstcard = false;
var secondcard = false;
var txt; // store here

然后,您需要var从最初设置值的行中删除 :

if (amountofclicks == 1) {
    firstcard = true;
    txt = $(this).find('.letter').text(); // note: 'var' removed
}

工作小提琴


使用难看的外部变量的另一种方法是data在具有第一张卡值的容器上设置一个属性,如下所示:

if (amountofclicks == 1) {
    firstcard = true;
    $("#container").data('first-letter', $(this).find('.letter').text());
}

if (amountofclicks == 2) {
    secondcard = true;

    var txt = $("#container").data('first-letter');
    var txt2 = $(this).find('.letter').text();
    alert(txt + ' ' + txt2);
}

示例小提琴

于 2012-12-20T14:42:13.503 回答
1

你的第一段代码似乎没问题。第二块没有。它可以变得更容易

var amountofclicks = 0;
var firstcard = false;
var secondcard = false;

$('#shuffle').bind('click', function() {

  var divs = $("div.choices").get().sort(function() {
    return Math.round(Math.random());
  }).slice(0, 16);

  $(divs).appendTo(divs[0].parentNode).show();

});

var firstChoise = null;

$('.choices').bind('click', function() {
  var $self = $(this);
  if (firstChoise == null) {
     firstChoise = $self.find('.letter').html();
  } else if (firstChoise == $self.find('.letter').html()) {
    alert('Choise: 2x'+firstChoise);
    firstChoise = null;
  } else {
    alert('Choise: 1x'+firstChoise+' 1x'+$self.find('.letter').html());
    firstChoise = null;
  }
});​

http://jsfiddle.net/czGZZ/1/

于 2012-12-20T15:04:51.230 回答