jqueryui ドラッグ アンド ドロップ (captcha プラグインを作成するため) を使用して、画像を 1 つの div コンテナーにドラッグし、その後 ajax 呼び出しを行います。これは、私がajax呼び出しを行い、それが完了すると、ドラッグされた画像の位置がリセットされる可能性がありますか?
私のドラッグ機能は(コードの一部)です
e("div.eL-captcha > div.eL-possibilities > img").draggable({
opacity: .6,
revert: "invalid",
refreshPositions: true
});
そして私のajax呼び出しは
$.ajax({
url: '../../captcha/miclass.php',
type: 'post',
data: $('#frm_sample').serialize(),
success: function(data) {
if(data=="Captcha error!")
{
alert("WRONG CAPTCHA ! Please Complete the Captcha By Choosing the correct image or for audio entering the right value");
}
else
{
$("form")[0].reset();
$(".mi_comments_container").prepend(data);
}
});