-1

可能重复:
<input type='file'> IE 给出完整路径,FF 仅给出文件名(或目录浏览)
如何解析 C:\fakepath?

getImage() 函数返回在 IE 中的标记中选择的文件的正确完整路径。但它只返回 Firefox 中的文件名。请帮忙。我需要所有浏览器中的完整路径名..

getImage()  {
    var location=document.getElementbyId("photo").value;
}

<body>
    <input type=file; id=photo;>
</body>
4

1 回答 1

0

较新的浏览器实现不允许您访问完整的文件名。你只需要处理它...

于 2012-07-30T18:15:39.130 回答