此问题已被问及here和here。但是我尝试了三个没有好运的答案。我正在使用一个名为Niagara的系统,它充当了Web服务器,这可能是这些技术不起作用的原因。尽管如此,我觉得必须有办法检查文件是否存在,而不是存在404或200或0。
答案 0 :(得分:12)
您可以使用$.ajax
$.ajax({
url: 'example.com/abc.html', //or your url
success: function(data){
alert('exists');
},
error: function(data){
alert('does not exist');
},
})