我需要一个检查文件是否存在的全局函数。我需要为几种方法重用该函数,所以我只希望它返回 true 或 false。我试图让它异步,但我无法让它工作。这是功能:
function checkIndex(){
$.ajax({
url:'upload/_3.fdt',
type:'HEAD',
async: false,
error: function(){
return false;
},
success: function(){
return true;
}
});
}
这是调用 checkIndex() 的函数之一
$(function(){
$(document).ready( function(){
if(checkIndex() == false)
$('#check').html('<td><img src="img/cross.gif" /></td><td>No index present</td>');
else
$('#check').html('<td><img src="img/check.gif" /></td><td>Index is present</td>');
});
});
我怎样才能使这项工作?