我正在 Jquery 中创建一个函数,通过使用 ajax 访问 checkdate.php 来验证给定的日期。checkdate.php 使用 checkdate() 并在日期有效时返回“成功”。这是我的 jquery 函数。
function checkdate(sample)
{
$.get('checkdate.php?dateSample='+ sample, function(data){
if(data == 'success')
return true;
else
return false;
});
}
checkdate.php 可以正常工作,我确信这一点,但我的问题是当我使用此代码时->
alert(checkdate('2013-09-22'));
或者
alert(checkdate('123123123iuo12'));
它总是提醒"Undefined"
我需要 checkdate 函数的布尔结果。请帮我。