码迷,mamicode.com
首页 > 编程语言 > 详细

Javascript判断文件是否存在的方法示例

时间:2014-09-03 07:17:56      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:style   http   os   java   ar   文件   cti   sp   on   

分享下javascript判断文件是否存在的方法。

1,判断客户端文件时,可以用
var fso,s=filespec; // filespec="C:/path/myfile.txt"
fso=new ActiveXObject("Scripting.FileSystemObject");
if(fso.FileExists(filespec))
s+=" exists.";
else // www.jbxue.com
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);

可以<input style="width:100%" type="file" name="" id="" contentEditable="false" >把contentEditable设置成false限制用户只能选择文件,而不能随便输入.

Javascript判断文件是否存在的方法示例

标签:style   http   os   java   ar   文件   cti   sp   on   

原文地址:http://www.cnblogs.com/yes123/p/3952798.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!