我正在使用jQuery和PHP创建一个记忆游戏(从发现的脚本here开始),基本上我正在尝试做的是这样当两张卡匹配时,它们都是被删除。但是,我正在使用两个不同的图像进行配对。在HTML表单中,每张卡片都是这样的:
<div class="card {toggle:'imagename'}">
<div class="off"></div>
<div class="on {toggle:'imageid'}"></div>
</div>
基本上,当选择两张牌时,jQuery会检查id是否匹配。最初它是假设检查图像是否匹配,但是两个不同的图像我不能这样做(它只显示一个)。下面是jQuery:
function matchingCards(event, params){
$cards = $("."+params.css_class+".on:visible");
$.each($cards, function(index, card){
var $card = $(card);
$card.trigger("card_removed");
$card.parent(".card").unbind("*").before("<div class='card_ph'></div>").remove();
$card = null;
});
$cards_left = $("#game_board>.card");
if ( $cards_left.length == 0 ){
$(document).trigger("game_won", {});
/*
* quickFlip has a problem when working in IE: when the last
* element bound was removed the problem is caused by the bound
* resize event on the window and is causing
* the end game get stuck when the game is over...
*/
$(window).unbind("resize");
}
$cards_left = $cards = null;
};
function checkCards(){
$on_cards = $("#game_board .card>.on:visible");
if ( $on_cards.length == 2 ){
$(document).trigger("player_made_move");
// Get the first object css class
var css_class = $on_cards.parent(".card").metadata()["toggle"];
var $card = $(this);
var this_card = $card.children(".on").metadata()["toggle"];
$matched_cards = $on_cards.filter("."+this_card);
var event_name = "no_match";
if ( $matched_cards.length == 2 ){
event_name = "found_match";
}
if ( css_class == css_class ){
event_name = "no_match";
}
$(document).trigger(event_name, {css_class: css_class});
$matched_cards = null;
}
clearTimeout(chk_cards_timeout);
chk_cards_timeout = null;
$on_cards = null;
};
任何帮助都将不胜感激。
其他信息:
这些对具有相同的图像名称我刚刚将“_desc”添加到其中一个用于CSS类名称(即一个图像标题为“i1”而另一个图像标题为“i1_desc”)
当找到一对卡片时,它们不会重置到原始位置或消失。
答案 0 :(得分:0)
试试这个流程。
1.单击卡片时...用“打开”更改课程。再次单击时,将更改类,默认为“隐藏”。
...每张卡片都有一个像image_name + desc的ID ...所以2张卡片会有相同的ID。
2.每次点击后,使用jQuery each()函数搜索“open”类并获取元素的id。
3)比较这两个id,如果相似则再次使用each()函数删除元素。如果您不使用each()函数,则只删除第1个元素。
ps:不要忘记计算,跟踪ids,得分......等等。
...行动中的每个()函数http://api.jquery.com/jQuery.each/