判断客户端文件时,可以用var fso,s=filespec; // filespec="C:/path/myfile.txt"fso=new ActiveXObject("Scripting.FileSystemObject");if(fso.FileExists(filespec))s+=" exists.";elses+=" doesn't exist.";alert(s);判断服务器端(网络文件)时,可以用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+="";//其他状态 }alert(s);当需要对上传文件作限制时,只需要控制用户只能选择不能,进行输入路径操作即可。把contentEditable设置成false就可以了,不用上述那么麻烦。附上一个判断上传文件类型:function GetFilePath(obj) { //alert(obj); var physical = document.getElementById(obj).value; var length = physical.length; var charindex = physical.lastIndexOf("."); var ExtentName = physical.substr(charindex,4) if(!(ExtentName == ".zip" || ExtentName == ".war" || ExtentName == ".doc" || ExtentName == ".xls" )) { alert("文件类型不正确!
判断客户端文件时,可以用
var fso,s=filespec; // filespec="C:/path/myfile.txt"
fso=new ActiveXObject("Scripting.FileSystemObject");
if(fso.FileExists(filespec))
s+=" 文件存在.";
else
s+=" 文件不存在.";
alert(s);
判断服务器端(网络文件)时,可以用
var xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("GET",yourFileURL,false);
xmlhttp.send();
if(xmlhttp.readyState==4){
if(xmlhttp.status==200)s+=" 存在."; //url存在
else if(xmlhttp.status==404)s+=" 不存在."; //url不存在
else s+="";//其他状态
}
alert(s);
1.判断客户端文件时,可以用关键词来判断
var fso,s=filespec; // filespec="C:/path/myfile.txt"
fso=new ActiveXObject("Scripting.FileSystemObject");
if(fso.FileExists(filespec))
s+=" 文件存在.";
else
s+=" 文件不存在.";
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+=" 存在."; //url存在
else if(xmlhttp.status==404)s+=" 不存在."; //url不存在
else s+="";//其他状态
}
alert(s);
判断客户端文件时,可以用
复制代码代码如下:
var fso,s=filespec; // filespec="C:/path/myfile.txt"
fso=new ActiveXObject("Scripting.FileSystemObject");
if(fso.FileExists(filespec))
s+=" exists.";
else
s+=" doesn't exist.";
alert(s);
判断服务器端(网络文件)时,可以用
代码如下:
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+="";//其他状态
}
alert(s);
可以把contentEditable设置成false限制用户只能选择文件,而不能随便输入.
你是要判断本地文件,还是网络资源?
判断本地文件
1
2
3
4
5
6
7
8
9
function ReportFileStatus(filespec) {
var fso, s = filespec;
fso = new ActiveXObject("Scripting.FileSystemObject");
if (fso.FileExists(filespec))
s += " exists.";
else
s += " doesn't exist.";
return(s);
}
判断网络文件
1
2
3
4
5
6
7
8
9
10
$.ajax({
url:'http://www.example.com/somefile.ext',
type:'HEAD',
error: function() {
//file not exists
},
success: function() {
//file exists
}
});