How do I check if file exists in jQuery or pure JavaScript?

前端 未结 18 2484
闹比i
闹比i 2020-11-22 00:56

How do I check if a file on my server exists in jQuery or pure JavaScript?

18条回答
  •  眼角桃花
    2020-11-22 01:35

    A similar and more up-to-date approach.

    $.get(url)
        .done(function() { 
            // exists code 
        }).fail(function() { 
            // not exists code
        })
    

提交回复
热议问题