分享下javascript判斷檔案是否存在的方法。
1,判斷客戶端檔案時,可以用
var fso,s=filespec; // filespec="C:/path/myfile.txt" fso=new ActiveXObject("Scripting.FileSystemObject"); if(fso.FileExists(filespec)) s+=" exists."; else // www.jb51.net s+=" doesn't exist."; alert(s);
2,判斷伺服器端(網路檔案)時,可以用
var xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); xmlhttp.open("GET",yourFileURL,false); xmlhttp.send(); if(xmlhttp.readyState==4){ if(xmlhttp.status==200)s+=" exists."; //url存在 else if(xmlhttp.status==404)s+=" doesn't exist."; //url不存在 else s+="";//其他状态 } // www.yuju100.com alert(s);
可以把contentEditable設定成false限制使用者只能選擇文件,而無法隨便輸入.