What does quot;./quot; (dot slash) refer to in terms of an HTML file path location?(“./是什么意思?(点斜杠)指的是 HTML 文件路径位置?)
问题描述
我知道../
的意思是上路,但是./
到底是什么意思呢?
I know ../
means go up a path, but what does ./
mean exactly?
我最近正在阅读一个教程,它似乎只是指同一位置的一个文件,所以有必要吗?如果仅此而已,我可以不使用它吗?
I was recently going through a tutorial and it seems to be referring to just a file in the same location, so is it necessary at all? Can I just not use it if that's all it's doing?
推荐答案
./
是 working 文件所在的文件夹:
./
is the the folder that the working file is in:
所以在 /index.htm
./
是根目录
但在 /css/style.css
./
是css文件夹.
So in /index.htm
./
is the root directory
but in /css/style.css
./
is the css folder.
记住这一点很重要,因为如果将 CSS 从 /index.htm
移动到 /css/style.css
,路径将会改变.
This is important to remember because if you move CSS from /index.htm
to /css/style.css
the path will change.
这篇关于“./"是什么意思?(点斜杠)指的是 HTML 文件路径位置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“./"是什么意思?(点斜杠)指的是 HTML 文件路径位置?


基础教程推荐
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 响应更改 div 大小保持纵横比 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 动态更新多个选择框 2022-01-01