读书人

IE浏览器下传文件时本地路径变成”C:\

发布时间: 2012-08-22 09:50:35 作者: rapoo

IE浏览器上传文件时本地路径变成”C:\fakepath\”的问题

//判断浏览器类型 2          var isIE = (document.all) ? true : false; 3         var isIE7 = isIE && (navigator.userAgent.indexOf('MSIE 7.0') != -1);          var isIE8 = isIE && (navigator.userAgent.indexOf('MSIE 8.0') != -1);         var isIE6 = isIE && (navigator.userAgent.indexOf('MSIE 6.0') != -1);         var file = document.getElementById("uploadFile");  var path = null;if (isIE7 || isIE8) { file.select();//获取欲上传的文件路径             path = document.selection.createRange().text;            document.selection.empty();} var filepath = document.getElementById("uploadFile").value;if (isIE6) {path = filepath; }alert("--------------------"+path);

?

读书人网 >Web前端

热点推荐