it didn't work when I 'return true' or 'return false', is there some
way to get it?
==============================================================
var url='http://localhost/coudou/check/register.php?email=' + str;
        $.getJSON(url, function(res){
                if(res.registed){
                        return true;  // not work
                }else{
                        return false; // not work
                }
        });

Reply via email to