如何表示上级目录

    ../表示源文件所在目录的上一级目录,../../表示源文件所在目录的上上级目录,以此类推。


    假设info.html路径是:c:\Inetpub\wwwroot\sites*blabla\info.html*

    假设index.html路径是:c:\Inetpub\wwwroot\sites*index.html*

    • info.html加入index.html超链接的代码应该这样写:
      ../index.html

    假设info.html路径是:c:\Inetpub\wwwroot*sites\blabla\info.html*

    假设index.html路径是:c:\Inetpub\wwwroot*index.html*

    • info.html加入index.html超链接的代码应该这样写:
      ../../../index.html

    假设info.html路径是:c:\Inetpub\wwwroot\sites*blabla\info.html*

    假设index.html路径是:c:\Inetpub\wwwroot\sites*wowstory\index.html*

    • info.html加入index.html超链接的代码应该这样写:
      ../wowstory/index.html

    如何表示下级目录引用下级目录的文件,直接写下级目录文件的路径即可。

    假设info.html路径是:c:\Inetpub\wwwroot\sites\blabla*info.html*

    假设index.html路径是:c:\Inetpub\wwwroot\sites\blabla*html\index.html*

    • info.html加入index.html超链接的代码应该这样写:
      html/index.html

    假设info.html路径是:c:\Inetpub\wwwroot\sites\blabla*info.html*

    假设index.html路径是:c:\Inetpub\wwwroot\sites\blabla*html\tutorials\index.html*

    • info.html加入index.html超链接的代码应该这样写:
      html/tutorials/index.html