gpt4 book ai didi

javascript - 使用 jQuery ui-sortable 的 Jumble Word 游戏

转载 作者:行者123 更新时间:2023-12-03 12:27:30 25 4
gpt4 key购买 nike

我正在尝试使用 jQuery ui-sortable 进行困惑文字游戏,用户可以尝试交换元素并提交他们的答案。在这里,用户将获得两个机会。如果用户第一次提交答案失败,他将获得另一次机会,通过卡住正确的字符,这意味着不允许移动正确的字符。我只想在其他错误的字符之间移动或交换错误的字符。我尝试了下面的代码

$("#word_"+i).sortable({
axis: 'x',
items: 'label:not(.correctText)',
cancel: '.correctText',
scrollSensitivity: 1,
tolerance: "pointer" ,
start: function(){
$(this).find("label:not(.ls)").each(function () {
$(this).data("fixedIndex", $(this).index());
});
},
change: function(){
$(this).find("label:not(.ls)").each(function () {
attrID = $(this).closest(".ui-sortable").attr("id");
if($(this).data("fixedIndex")!=0)
{
$(this).detach().insertAfter($("#"+attrID+" label:eq(" + ($(this).data("fixedIndex")-1) + ")"));
}
else
{
$(this).detach().insertBefore($("#"+attrID+" label:eq(" + ($(this).data("fixedIndex")) + ")"));
}
});
}
});
$("#word_"+i+" label.correctText").disableSelection();
}

如果我将第二个和第三个字母移动到正确的位置并提交,我可以使用上述逻辑卡住正确的元素,但不能卡住连续的正确字符。它被卡住了,但是当我尝试将第一个错误的元素移动到正确的位置时,我就遇到了麻烦。它将正确的字符移动到错误的位置。

最佳答案

感谢您的回复 Tilwin Joy,我实际上自己修复了它。更新的代码集位于

jsfiddle.net/JZ74V/32/

这套 fiddle 可以帮助您了解我的需求,如果需要的话可以使用它。

关于javascript - 使用 jQuery ui-sortable 的 Jumble Word 游戏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24118786/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com