我正在尝试使用jQuery创建基本游戏,用户点击并选择特定的图像组合,然后会出现通知。
至少任何人都可以指出我正确的方向,因为到目前为止所有尝试都失败了。
感谢。
答案 0 :(得分:1)
你可以做到
var v = $(".className").size();
答案 1 :(得分:0)
$('#gamebord img').click(function() {
$(this).addClass('selected');
if ($("#gamebord img.selected").length == 2)
alert('2 images selected');
});
更新:
$('#gamebord img').click(function() {
$(this).addClass('selected');
if ($("#gamebord img.selected.correct").length == 2)
alert('2 images selected');
});
更新2:
$('#button').click(function() {
if ($("#gamebord img.selected").length == 2)
alert('2 images selected');
});