我想在新标签中打开之前验证HTML文件是否存在。
我怎样才能使用纯JavaScript?
我将文件的位置存储在路径变量中。
path = "F:\Folder_JS\File1.html";
//I want to check here whether there exists such a file or not before opening it new tab
myWindow = window.open(path,'_blank');
答案 0 :(得分:0)
您可以通过js尝试:
var url = 'File1.html'; //use file url not real path. ex: folder/File1.html
var http = new XMLHttpRequest();
http.open('HEAD', url, false);
http.send();
if(http.status!=404){
//file exist
}else{
//file not exist
}