確定伺服器檔案是否存在對於各種 Web 應用程式至關重要。以下是如何使用jQuery 和純JavaScript 來完成此任務:
jQuery 可以輕鬆檢查檔案存在:
$.ajax({ url: 'http://www.example.com/somefile.ext', type: 'HEAD', error: function() { // File does not exist }, success: function() { // File exists } });
function UrlExists(url) { var http = new XMLHttpRequest(); http.open('HEAD', url, false); http.send(); return http.status != 404; }
function executeIfFileExist(src, callback) { var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function() { if (this.readyState === this.DONE) { callback(); } }; xhr.open('HEAD', src); xhr.send(); }
以上是如何使用 jQuery 和 JavaScript 檢查檔案是否存在?的詳細內容。更多資訊請關注PHP中文網其他相關文章!