标签: javascript html file google-chrome
当我在本地打开html页面时,如何读取/检查页面的同一文件夹中是否存在文件。该页面仅供本地使用。
答案 0 :(得分:-3)
尝试发出ajax请求来检索文件。 jQuery示例:
$.get('url to your local file') .done(()=>{ alert('file exists'); }) .fail(()=>{alert('file cannot be retrieved');});