url:'文件名字',
seccuss:function(){
alert('文件存在')
},
error:function(e){
if(e.status == 404)alert('文件不存在')
}
}
用这个JQ的方法可以判定文件是否存在 当然 请求一个文件 如果存在的话 也不会d出存在 会报500的错误 404是不存在
IsExstsFile(yourFileURL) {var flag
var xmlhttp
if(window.XMLHttpRequest)
{
xmlhttp = new XMLHttpRequest()//其他浏览器
}
else if (window.ActiveXObject)
{
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP")//旧版IE
}
catch (e) { }
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP")//新版IE
}
catch (e) { }
if (!xmlhttp) {
window.alert("不能创建XMLHttpRequest对象")
}
}
xmlhttp.open("GET",yourFileURL,false)
xmlhttp.send()
if(xmlhttp.readyState==4){
if(xmlhttp.status==200)
flag =true
else
flag =false
}
return flag
},
判断客户端文件时,可以用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)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)