可能重复:
<input type='file'> IE 给出完整路径,FF 仅给出文件名(或目录浏览)
如何解析 C:\fakepath?
getImage() 函数返回在 IE 中的标记中选择的文件的正确完整路径。但它只返回 Firefox 中的文件名。请帮忙。我需要所有浏览器中的完整路径名..
getImage() {
var location=document.getElementbyId("photo").value;
}
<body>
<input type=file; id=photo;>
</body>