如果您在本地打开页面,请检查文件是否存在于javascript和HTML中

时间:2018-03-28 11:16:59

标签: javascript html file google-chrome

当我在本地打开html页面时,如何读取/检查页面的同一文件夹中是否存在文件。该页面仅供本地使用。

1 个答案:

答案 0 :(得分:-3)

尝试发出ajax请求来检索文件。 jQuery示例:

$.get('url to your local file')
.done(()=>{ alert('file exists'); })
.fail(()=>{alert('file cannot be retrieved');});