导入时,不论是什么路径上传的文件,路径都变成了"C:\fakepath\"+文件名的形式。
以下有两种解决方案:
1、工具 -> Internet选项 -> 安全 -> 自定义级别 -> 找到“其他”中的“将本地文件上载至服务器时包含本地目录路径”,选中“启用”即可。
2、通过代码解决这个问题
function getPath(obj) {
if(obj) {
if (window.navigator.userAgent.indexOf("MSIE")>=1) {
obj.select();
window.parent.document.body.focus();
return document.selection.createRange().text;
} else if(window.navigator.userAgent.indexOf("Firefox")>=1){
if(obj.files) {
return obj.files.item(0).getAsDataURL();
}
return obj.value;
}
return obj.value;
}
}