Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这个问题已经在这里和这里被问过了。但是我已经尝试了三个答案,但都没有运气。我正在使用一个名为 Niagara 的系统,它充当 Web 服务器,这可能是这些技术不起作用的原因。尽管如此,我觉得必须有一种方法来检查文件的存在,而不是 404 或 200 或 0 的存在。
您可以使用$.ajax
$.ajax
$.ajax({ url: 'example.com/abc.html', //or your url success: function(data){ alert('exists'); }, error: function(data){ alert('does not exist'); }, })