var cek = false;
function checkForm()
{
var user = document.forms["LoginForm"]["user"].value;
var pwd = document.forms["LoginForm"]["pwd"].value;
AJAXfunc("checkidpass.php?id="+user+"&pass="+pwd,function()
{
if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200))
{
$("#LoginRes").html(xmlhttp.responseText);
if (xmlhttp.responseText == "")
cek = true;
}
}); //---> 1
return cek; //---> 2
}
「return cek;」の理由をお聞きしたいです。(パート 2) は AJAXfunc (パート 1) の前に実行されますか? そして、正しい順序で実行する方法を知りたいです。
ご協力いただきありがとうございます !