如何使用FileUpload Control获取文件的完整路径?

时间:2010-08-05 04:58:23

标签: javascript

我在我的应用程序中使用FileUpload Control来上传用户信息。当我使用javascript获取fileupload控件的值时,它只给出了mozilla中的文件名,而在IE中它给出了文件名的整个路径。我想要文件名与整个路径。 mozilla结果 - user.doc IE结果 - /usr/local/user.doc(我想要的)

<input type="file" id="myFile" />
<input type="button" onclick="getFile();" />

<script type="text/javascript">

function getFile() {
    var fileInput = document.getElementById("myFile").value;
    alert(fileInput);
}

</script>

1 个答案:

答案 0 :(得分:1)

现代浏览器不提供此信息,因为它被认为是不安全的。 HTML和JavaScript没有一致的方法。