Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以通过 javascript 获取我的 html 页面的完整路径吗?例如我的索引页面位于
d:/somefolder/anotherfolder/index.html
所以我能得到这条路吗
谢谢
您只能访问相对于主机 URL 的当前文件路径,不能访问该文件的文件夹路径。
由于安全原因,这在 JavaScript 中受到限制。如果允许,恶意脚本可以轻松读取服务器的内部文件夹结构,这很糟糕。
在本地计算机上这是不可能的,但是您可以使用:
document.location.href;
获取托管文件的 URL
不,由于安全原因,您不能浏览器不允许 javascript 访问文件路径