我试图使用javascript找到我的工作目录的实际路径。我从这篇文章中读到了 How to get the absolute path of the current javascript file name
<script>
alert(location.pathname); // /tmp/test.html
alert(location.hostname); // localhost
alert(location.search); // ?blah=2
alert(document.URL); // http://localhost/tmp/test.html?blah=2#foobar
alert(location.href); // http://localhost/tmp/test.html?blah=2#foobar
alert(location.protocol); // http:
alert(location.host); // localhost
alert(location.origin); // http://localhost
alert(location.hash); // #foobar
</script>
但是我一直都在寻找它们,因为我想找到路径,例如&#34; C:/ xampp / htdocs / myCurrentDirectory&#34;。那么如何做到这一点......?
提前致谢...:)
答案 0 :(得分:3)
你不能。
URL和文件路径之间的任何连接都由HTTP服务器完全内部处理(根本不存在)。关于这种关系没有任何关系暴露给客户,因此客户端代码无法了解它。