使用jQuery从文件输入的完整路径

前端之家收集整理的这篇文章主要介绍了使用jQuery从文件输入的完整路径前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我调用val()一个输入与type =“文件”我只得到文件名而不是完整的路径。如何获得完整路径?

解决方法

你不能:这是所有现代浏览器的安全功能

对于IE8,它默认关闭,但可以使用安全设置重新激活:

When a file is selected by using the input type=file object,the value of the value property depends on the value of the “Include local directory path when uploading files to a server” security setting for the security zone used to display the Web page containing the input object.

The fully qualified filename of the selected file is returned only when this setting is enabled. When the setting is disabled,Internet Explorer 8 replaces the local drive and directory path with the string C:\fakepath\ in order to prevent inappropriate information disclosure.

在所有其他当前主流浏览器我知道,它也被关闭文件名是你能得到的最好的。

更详细的信息和良好的链接this question.它指的是获取服务器端的价值,但问题是相同的JavaScript中的表单提交之前。

原文链接:https://www.f2er.com/jquery/184637.html

猜你在找的jQuery相关文章