我们在电脑里编写程序时,经常需要引用到某一个文件,这时候就可以通过相对路径的方式来引用,不过不同于绝对路径,html相对路径怎么写呢。
html相对路径怎么写:
1、首先,相对路径需要有一个参照物。
2、顾名思义,就是想要引用的文件相对参照文件的路径位置。
3、在表示相对路径时,“../”表示上一级目录开始;“./”表示当前同级目录开始;“/”表示根目录开始。
4、了解这些之后,我们就可以编写相对路径了。
5、举例来说,两个文件“index.html”和“tupian.png”在同一个目录下。
6、所以我们想要由html文件引用png文件的的话,html的相对路径就是“./tupian.png”
7、同理,在上级目录下的话,就是“../tupian.png”
8、在下级目录的话,就是“./abc/tupian.png”
Hi, this is a comment. To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard. Commenter avatars come from Gravatar.