下面介绍js获取文件路径,结果都是C:\fakepath的问题的解决方法:
工具/原料
电脑
chrome浏览器
方法/步骤
1、编写demo.htmldemo.html代码如下:<!DOCTYPEh隋茚粟胫tml><html><head>稆糨孝汶;<scripttype="text/script"src="demo.js"</script></head><body><inputid="selectFileInput"type="file"multiple="multiple"list="fileList"/></body></html>
2、编写demo.jsdemo.js代码如下://选择文件functionsel娣定撰钠ectFiles(e){v锾攒揉敫artmpPath=this.value;//获取路径if(!tmpPath){returnnull;}elseif(tmpPath.lastIndexOf('/')>-1){returntmpPath.substring('0',tmpPath.lastIndexOf('/'));}elseif(tmpPath.lastIndexOf('\\')>-1){returntmpPath.substring('0',tmpPath.lastIndexOf('\\'));}}//页面加载事件window.onload=function(callback){document.getElementById("selectFileInput").onchange=selectFiles;}
3、获取路径和原因分析js获取文件路径为:“C:\fakepath”;原因分析:window系统为了安全考虑,不让从客户端获取文件路径,统一使用C:\fakepath代替。